blob: 192e4f2f1c396cd48ac7a1c8696fc9cfe32f593d [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. If T.m exists, it is a static type
* warning if the type F of T.m may not be assigned to a function type.
* @description Checks that it is a static type warning if T.m cannot be assigned to a function type.
* @static-warning
* @author msyabro
* @reviewer rodionov
*/
import "../../../Utils/expect.dart";
class C {
int m;
}
main() {
C o;
try {
o.m(); /// static type warning
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch(e) {}
}