| Index: tests/language/library_ambiguous_test.dart
|
| ===================================================================
|
| --- tests/language/library_ambiguous_test.dart (revision 27975)
|
| +++ tests/language/library_ambiguous_test.dart (working copy)
|
| @@ -13,10 +13,10 @@
|
| {}
|
|
|
| main() {
|
| - print(foo); /// 00: compile-time error
|
| - print(bar()); /// 01: compile-time error
|
| - print(baz()); /// 02: compile-time error
|
| - print(bay()); /// 03: compile-time error
|
| + print(foo); /// 00: runtime error
|
| + print(bar()); /// 01: runtime error
|
| + print(baz()); /// 02: runtime error
|
| + print(bay()); /// 03: runtime error
|
| print(main is bax); /// 04: static type warning
|
| var x = new X(); /// 05: continued
|
| print("No error expected if ambiguous definitions are not used.");
|
|
|