blob: cacae150ed2ed345812059176b6c896feb0e0f2e [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:OutputUnit(3, {lib2})*/
foo() {
print("lib2");
main.foo();
}