blob: b7cfb4519722b53a3e6785f6080b4f3dfb9f5c54 [file] [log] [blame]
/*
* Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion Static member declarations in the extension declaration can be
* accessed the same way as static members of a class or mixin declaration: By
* prefixing with the extension's name.
* @description Check that non-static member can not be accessed by prefixing
* with the extension's name
* @compile-error
* @author iarkh@unipro.ru
*/
// SharedOptions=--enable-experiment=extension-methods
extension MySmart on Object {
void doNothing() {}
}
main() {
MySmart.doNothing();
}