blob: ffb19730019b2c409ee7b07c19aa9a4f504982f2 [file] [log] [blame] [edit]
// Copyright (c) 2026, 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.
// dart2wasmOptions=--enable-deferred-loading
import 'super_dependency_helper2.dart' deferred as def;
import 'super_dependency_helper1.dart' as eager;
Future<void> main() async {
eager.Eager().invoke('hello');
eager.Eager().setter = 'world';
await def.loadLibrary();
def.useEager();
def.Deferred();
}