| Index: tests/language/library_ambiguous_test.dart
|
| diff --git a/tests/language/library_ambiguous_test.dart b/tests/language/library_ambiguous_test.dart
|
| index 011f041ca4d2346ec8a3437587d190576a673a96..aef63330484ba14194549b3294c4a44f239ef87b 100644
|
| --- a/tests/language/library_ambiguous_test.dart
|
| +++ b/tests/language/library_ambiguous_test.dart
|
| @@ -9,15 +9,15 @@ import "library1.dart"; // Defines top level variable 'foo'
|
| import "library2.dart"; // Defines top level variable 'foo'
|
|
|
| class X
|
| -extends baw /// 05: compile-time error
|
| +extends baw // /// 05: compile-time error
|
| {}
|
|
|
| main() {
|
| - 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, runtime error
|
| - var x = new X(); /// 05: continued
|
| + 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, runtime error
|
| + var x = new X(); // /// 05: continued
|
| print("No error expected if ambiguous definitions are not used.");
|
| }
|
|
|