| Index: tests/language/call_constructor_on_unresolvable_class_test.dart
|
| diff --git a/tests/language/call_constructor_on_unresolvable_class_test.dart b/tests/language/call_constructor_on_unresolvable_class_test.dart
|
| index 3ecf056d1b41498cd0556db5b7f77ee7db9d8a8a..0998eecd951c9bd34b3be85f994d77c8ce2b976a 100644
|
| --- a/tests/language/call_constructor_on_unresolvable_class_test.dart
|
| +++ b/tests/language/call_constructor_on_unresolvable_class_test.dart
|
| @@ -20,12 +20,12 @@ main() {
|
| // These should not produce errors because the calls are never executed.
|
| new A(); /// 01: static type warning
|
| new A.foo(); /// 02: static type warning
|
| - new library.A(); /// 03: static type warning
|
| + new lib.A(); /// 03: static type warning
|
| }
|
|
|
| new A(); /// 04: runtime error
|
| new A.foo(); /// 05: runtime error
|
| - new library.A(); /// 06: runtime error
|
| + new lib.A(); /// 06: runtime error
|
|
|
| var ex; /// 07: static type warning
|
| try { /// 07: continued
|
|
|