| 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
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f7dd16870d44a18f9f3c32f7c9326302ccc74787
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/infer_throw.dart
|
| @@ -0,0 +1,12 @@
|
| +// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +/*@testedFeatures=inference*/
|
| +library test;
|
| +
|
| +var /*@topType=bool*/ t = true;
|
| +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);
|
|
|