blob: 7b7b896a2c1310673c859da355b9f4b37dd2acf2 [file] [log] [blame]
// 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;
import 'dart:async';
import 'dart:math' show Random;
test() {
var /*@type=() -> Future<num>*/ f = /*@returnType=Future<num>*/ () async {
if (new Random(). /*@target=dart.math::Random.nextBool*/ nextBool()) {
return new Future<int>.value(1);
} else {
return 2.0;
}
};
Future<num> g = f();
}
main() {}