blob: 0f573fae890c4f635bc8c0e48671e34218a25a04 [file] [log] [blame]
/*
* Copyright (c) 2011, 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 It is a static type warning if S does not have an accessible
* instance member named m unless S or a superinterface of S is annotated
* with an annotation denoting a constant identical to the constant @proxy
* deļ¬ned in dart:core.
* @description Checks that it is a static type warning if member m in S is inaccessible.
* @static-warning
* @author msyabro
* @reviewer kaigorodov
*/
import "../../../Utils/expect.dart";
import "lib.dart";
//library code
// library lib;
//
// class C {
// _func() {}
// }
class A extends C {
test() {
try {
super._func(); /// static type warning - see "Super invocation"
Expect.fail("NoSuchMethodError is expected");
} on NoSuchMethodError catch(e) {}
}
}
main() {
new A().test();
}