blob: f1d63241b606fcb32da794f40608b00243c6f60d [file] [log] [blame]
// Copyright (c) 2015, 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.
/**
* @assertion Evaluation of an await expression a of the form await e
* proceeds as follows: First, the expression e is evaluated. Next:
* If e raises an exception x, then an instance f of class Future is allocated
* and later completed with x. ... If f has completed with an exception x,
* a raises x.
*
* @description Check that if e is a call to non existing function, then
* it is a compile error
* @compile-error
* @author a.semenov@unipro.ru
*/
import '../../../Utils/expect.dart';
test() async {
await f();
}
main() {
asyncStart();
test().then((value) => asyncEnd());
}