blob: fd5784c284664beb86910b9fab6a1ce95986f117 [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.
/*element: main:[null]*/
main() {
asyncMethod();
asyncStarMethod();
syncStarMethod();
}
/*element: asyncMethod:[exact=_Future]*/
asyncMethod() async {}
/*element: asyncStarMethod:[exact=_ControllerStream]*/
asyncStarMethod() async* {}
/*element: syncStarMethod:[exact=_SyncStarIterable]*/
syncStarMethod() sync* {}