| Index: tests/language/library_ambiguous_test.dart
|
| diff --git a/tests/language/library_ambiguous_test.dart b/tests/language/library_ambiguous_test.dart
|
| index 75d2fdadc2a5066e55ec19301593a147293f21f9..cb02c8d1ef2111b3b63cc49b00066311c3f31d45 100644
|
| --- a/tests/language/library_ambiguous_test.dart
|
| +++ b/tests/language/library_ambiguous_test.dart
|
| @@ -17,7 +17,7 @@ main() {
|
| print(bar()); /// 01: compile-time error
|
| print(baz()); /// 02: compile-time error
|
| print(bay()); /// 03: compile-time error
|
| - print(main is bax); /// 04: compile-time 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.");
|
| }
|
|
|