e2ad2db805
Change-Id: Ibf453ca7390b81da7231dcb1be43e426c00d6eeb Reviewed-on: https://dart-review.googlesource.com/35100 Commit-Queue: Sigmund Cherem <sigmund@google.com> Reviewed-by: Peter von der Ahé <ahe@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
14 lines
328 B
Dart
14 lines
328 B
Dart
// Copyright (c) 2018, 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.md file.
|
|
|
|
import 'deferred_lib.dart' deferred as lib;
|
|
|
|
main() {}
|
|
test() {
|
|
lib.x = m2();
|
|
lib.m(m2());
|
|
}
|
|
|
|
m2() => 1;
|