blob: 7ffc3f1a0aac7ea3bcd325947e80d468d3ca0a4d [file] [log] [blame]
# Copyright (c) 2018, 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.md file.
# Test loading from a dill file with a deferred library.
# This is done by initializing from dill and making no changes/invalidations.
type: simple
name: testDeferredLibrary
entry: testDeferredLibrary_main.dart
strong: false
invalidate:
sources:
testDeferredLibrary_main.dart: |
import 'testDeferredLibrary_b.dart' deferred as b;
void main() {
print(b.foo());
}
testDeferredLibrary_b.dart: |
String foo() => "hello from foo in b";