blob: 4a112f9fa19104eaf2d7d82a39080b4e581bcbcd [file] [log] [blame]
// Copyright (c) 2011, 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.
/// @assertion It is a static warning if the specified URI of a deferred import
/// does not refer to a library declaration.
/// @description Checks that it is not a static type warning if the file pointed
/// to by a deferred import directive exists but does not contain a library
/// declaration.
/// @author ngl@unipro.ru
import "invalid_uri_t03_lib.dart" deferred as p;
main() async {
await p.loadLibrary();
p.foo();
}