| Index: pkg/front_end/testcases/inference/for_loop_initializer_expression.dart.dartk.expect
|
| diff --git a/pkg/front_end/testcases/inference/for_loop_initializer_expression.dart.dartk.expect b/pkg/front_end/testcases/inference/for_loop_initializer_expression.dart.dartk.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..85d4169ac4578ba5796882b0156a5b9e7b90ac1e
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/for_loop_initializer_expression.dart.dartk.expect
|
| @@ -0,0 +1,16 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +static method test() → void {
|
| + core::num x;
|
| + {
|
| + x = 0;
|
| + for (; x.<(10); x = x.+(1)) {
|
| + if(x is core::int) {
|
| + dynamic y = x;
|
| + }
|
| + }
|
| + }
|
| +}
|
| +static method main() → dynamic {}
|
|
|