blob: a821a38491d04a250b98143ad0103d9fc5cb935d [file] [log] [blame]
// Copyright (c) 2020, 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.9
import 'const_lib.dart';
const crossModule = B();
main() {
expect(2.71, crossModule.d);
expect('default', crossModule.s);
}
expect(expected, actual) {
if (expected != actual) throw 'Expected $expected, actual $actual';
}