| Index: pkg/front_end/testcases/inference/infer_throw.dart
|
| diff --git a/pkg/front_end/testcases/inference/infer_throw.dart b/pkg/front_end/testcases/inference/infer_throw.dart
|
| index f7dd16870d44a18f9f3c32f7c9326302ccc74787..0bd74f4c71a6e38bc1737ef3343fbb9e27c14a50 100644
|
| --- a/pkg/front_end/testcases/inference/infer_throw.dart
|
| +++ b/pkg/front_end/testcases/inference/infer_throw.dart
|
| @@ -10,3 +10,5 @@ var /*@topType=dynamic*/ a = (throw 0);
|
| var /*@topType=int*/ b = (throw 0) ? 1 : 2;
|
| var /*@topType=int*/ c = t ? (throw 1) : 2;
|
| var /*@topType=int*/ d = t ? 1 : (throw 2);
|
| +
|
| +main() {}
|
|
|