blob: df396c50c463d90add803311f648b98f0103da8f [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 static member can be accessed by usual way
* @author iarkh@unipro.ru
*/
import "../../Utils/expect.dart";
extension MySmart on Object {
static Object smartHelper(Object o) { return o; }
Object smart() => smartHelper(this);
}
main() {
String str = "12345";
Expect.equals(str, str.smart());
Expect.equals(str, MySmart.smartHelper(str));
}