blob: 0a1656a172f339a28b912aff90163507d1b98f26 [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 Let T be the static type of o. It is a static type warning if T
* does not have an accessible instance member named m unless T or a
* superinterface of T 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 T does not have an instance member named m.
* @static-warning
* @author msyabro
* @reviewer rodionov
*/
import "../../../Utils/expect.dart";
class C {}
main() {
C o=new C();
Expect.throws((){
o.nonExistingMethod();
}
, (e)=>e is NoSuchMethodError
);
}