blob: b8858a1592c22802b4122030d7d5a563fdf8ca8e [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 An extension is in scope if the name is shadowed by another
* declaration
*
* @description Check that an extension's name is only accessible if it is not
* shadowed and not conflicting with another imported declaration.
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=extension-methods
import "scope_all_lib.dart";
class Foo {}
main() {
Foo.staticFoo; //# 01: compile-time error
}