Chromium Code Reviews| Index: tests/compiler/dart2js_extra/23486_test.dart |
| diff --git a/tests/compiler/dart2js_extra/23486_test.dart b/tests/compiler/dart2js_extra/23486_test.dart |
| index 41fcf2d4b8b60793fd7369a8a3bc8c4d276fdcba..824a050dfb076a83768a5b9fcaf6a331b6c304c8 100644 |
| --- a/tests/compiler/dart2js_extra/23486_test.dart |
| +++ b/tests/compiler/dart2js_extra/23486_test.dart |
| @@ -31,8 +31,8 @@ class D extends C { |
| } |
| main() { |
| - Expect.throws(new A().m); /// 01: continued |
| + Expect.throws(new A().m); // /// 01: continued |
| Expect.throws(() => new D.name()); /// 02: continued |
|
sra1
2017/03/21 01:43:46
//
Jacob
2017/03/21 02:25:34
Done.
|
| - Expect.throws(() => (p).x); /// 03: compile-time error |
| + Expect.throws(() => (p).x); // /// 03: compile-time error |
| } |