Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Unified Diff: tests/language/library_ambiguous_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/least_upper_bound_test.dart ('k') | tests/language/library_env_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/library_ambiguous_test.dart
diff --git a/tests/language/library_ambiguous_test.dart b/tests/language/library_ambiguous_test.dart
index aef63330484ba14194549b3294c4a44f239ef87b..ccac0087c07deab1d8ebb190b282cb15b82e2dde 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.");
}
« no previous file with comments | « tests/language/least_upper_bound_test.dart ('k') | tests/language/library_env_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698