blob: 9dc5c1c57b1f307c685f980cb21ac9d74488b5f3 [file]
// Copyright (c) 2025, 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' show A, B, C;
void main() async {
final c = await helper.load('entry1.dart') as C?;
if (c != null) {
A(B(c).c.foo);
}
helper.done();
}