blob: 513d43b08af5b0d0589598aa03ed63afca635a1b [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.
import '../libs/deferred_constant1_lib1.dart' as lib1 hide C2, C3;
import '../libs/deferred_constant1_lib2.dart' deferred as lib2;
/*element: main:OutputUnit(main, {})*/
main() async {
lib1.C1.value;
await lib2.loadLibrary();
lib2.C2.value;
lib2.C3.value;
}