blob: 9663ec2bb55b32159862ca79a5b4df88df091314 [file] [log] [blame]
// Copyright (c) 2024, 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 '../../common/testing.dart' as helper;
import 'shared/shared.dart';
import 'package:expect/expect.dart';
// Constants are properly canonicalized across dynamic modules.
void main() async {
final c1 = (await helper.load('entry1.dart'));
final c2 = (await helper.load('entry2.dart'));
Expect.identical((c1 as B).x, 1);
Expect.identical(c1, c2);
helper.done();
}