blob: 8e0e6513eee9bf223fb623fa4d739463a3ca58be [file] [log] [blame]
// Copyright (c) 2014, 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.
// Test that dart2js produces the expected static type warnings and
// compile-time errors for these tests.
import 'frontend_checker.dart';
const List<String> TESTS = const <String>[
'language/async_await_syntax_test.dart',
];
void main(List<String> arguments) {
check(TESTS, arguments: arguments, options: ['--enable-async']);
}