blob: d421b892470833c70fce76f0a3b537ab4b685572 [file] [log] [blame]
// 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.
// @dart = 2.7
import 'exported_main.dart' show C;
import 'exported_main.dart' as main;
const C4 = "string4";
const C5 = const C(1);
const C6 = const C(2);
/*member: foo:member_unit=3{lib2}*/
foo() {
print("lib2");
main.foo();
}