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

Unified Diff: tests/language/library_ambiguous_test.dart

Issue 24789003: Fix test failure expectations and update status files. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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
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.");

Powered by Google App Engine
This is Rietveld 408576698