blob: f916de506f5f4fb87a57ea5ce21e10d8ad9e5c3d [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.7
import 'libb.dart' deferred as libb;
import 'libc.dart';
/*member: main:OutputUnit(main, {})*/
main() async {
var f = /*OutputUnit(main, {})*/ () => libb.C1();
print(f is C2 Function());
print(f is C3 Function());
await libb.loadLibrary();
}