dart-sdk/tests/language/deferred_function_type_test.dart
2015-04-10 11:21:10 +00:00

11 lines
342 B
Dart

// 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.
import 'deferred_function_type_lib.dart' deferred as lib;
main() {
lib.loadLibrary().then((_) {
lib.runTest();
});
}