| Index: tests/language/type_literal_prefix_call_test.dart
|
| diff --git a/tests/language/type_literal_prefix_call_test.dart b/tests/language/type_literal_prefix_call_test.dart
|
| index 8dfdfb3b3ac6d10e87dc35ff3b8fd57a958264cf..b80cb44be6342e4609b4d21a8055d2e29e1ba0c3 100644
|
| --- a/tests/language/type_literal_prefix_call_test.dart
|
| +++ b/tests/language/type_literal_prefix_call_test.dart
|
| @@ -8,5 +8,5 @@ import 'dart:core' as core;
|
| // Check that calling a type with a prefix is allowed, but throws at runtime.
|
|
|
| main() {
|
| - Expect.throws(() => core.List(), (e) => e is core.NoSuchMethodError); /// 00: static type warning
|
| + Expect.throws(() => core.List(), (e) => e is core.NoSuchMethodError); //# 00: static type warning
|
| }
|
|
|