blob: 42fed699432a4d3875b03b143f33b0c0beed1ce7 [file] [log] [blame]
// Copyright (c) 2019, 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.
/*library:
output_units=[
f1: {units: [3{lib1, lib3}], usedBy: [2, 3], needs: []},
f2: {units: [1{lib1}], usedBy: [], needs: [1]},
f3: {units: [2{lib3}], usedBy: [], needs: [1]}],
steps=[
lib1=(f1, f2),
lib3=(f1, f3)]
*/
// @dart = 2.7
import 'lib1.dart' deferred as lib1;
import 'lib2.dart' as lib2;
import 'lib3.dart' deferred as lib3;
/*member: main:
constants=[
ConstructedConstant(A<B*>())=1{lib1},
ConstructedConstant(A<F*>())=1{lib1},
ConstructedConstant(C<D*>())=main{},
ConstructedConstant(E<F*>())=2{lib3}],
member_unit=main{}
*/
main() async {
await lib1.loadLibrary();
lib1.field1;
lib1.field2;
lib2.field;
lib3.field;
}