21891a965f
Also allows us to more generally compare annotations in multi-file tests. Bug: Change-Id: I2f4ac34b918cc80400ebc417dfcc2caf56457ac2 Reviewed-on: https://dart-review.googlesource.com/30923 Commit-Queue: Emily Fortuna <efortuna@google.com> Reviewed-by: Sigmund Cherem <sigmund@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
10 lines
382 B
Dart
10 lines
382 B
Dart
// 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.
|
|
import '../libs/basic_deferred_lib.dart' deferred as lib;
|
|
|
|
/*element: main:OutputUnit(main, {})*/
|
|
main() => lib.loadLibrary().then((_) {
|
|
(lib.funky)();
|
|
});
|