-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Description
This issue was originally filed by [email protected]
Dart spec is not quite precise what are allowed prefices, but the following Dart code:
import('dart:core', prefix: '_p');
main() {
print(new _p.List<int>());
}
gives:
zsh/3 368 20-[master]-% ./out/ReleaseIA32/dart t.dart
'file:///usr/local/google/home/antonm/dart-proper/dart/t.dart': Error: line 3 pos 13: type '_p@3a99ae38' is not loaded
print(new _p.List<int>());
^
under DartVM.
Metadata
Metadata
Assignees
Labels
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.