blob: 06bf08c88923b1a4d87b040fe92927249250b6c3 [file] [log] [blame] [edit]
// Copyright (c) 2018, 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.
library test;
import 'dart:async';
void foo(Stream<int> Function() values) {}
void main() {
foo(() async* {
yield 0;
yield 1;
});
}