blob: 828bf203e17c8298106245d5d8217e97381904f3 [file] [log] [blame]
// Copyright (c) 2015, the Dart Team. All rights reserved. Use of this
// source code is governed by a BSD-style license that can be found in
// the LICENSE file.
import "package:expect/expect.dart";
@NoInline()
@AssumeDynamic()
confuse(x) => x;
Iterable<int> foo() sync* {
var a = confuse(1);
if (a < 10) {
yield 2;
}
}
main() {
Expect.listEquals(foo().toList(), [2]);
}