blob: 43361b407ce0742018b874a209cfad95a39611b4 [file] [log] [blame]
// Copyright (c) 2019, 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.
// @dart=2.9
main() {
foo();
}
foo() {
// ignore: await_in_wrong_context
await foo();
}