Index: tests/language_strong/library_ambiguous_test.dart |
diff --git a/tests/language_strong/library_ambiguous_test.dart b/tests/language_strong/library_ambiguous_test.dart |
index 011f041ca4d2346ec8a3437587d190576a673a96..52d1a4c84d38b0b16382e5be1677107fcd5c7d2a 100644 |
--- a/tests/language_strong/library_ambiguous_test.dart |
+++ b/tests/language_strong/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."); |
} |