| library; |
| // |
| // Problems in library: |
| // |
| // pkg/front_end/testcases/wildcard_variables/import_prefix.dart:8:3: Error: Undefined name '_'. |
| // _.Queue<int>(); |
| // ^ |
| // |
| // pkg/front_end/testcases/wildcard_variables/import_prefix.dart:9:3: Error: Method not found: 'Queue'. |
| // Queue<int>(); |
| // ^^^^^ |
| // |
| import self as self; |
| import "dart:core" as core; |
| import "dart:collection" as col; |
| |
| import "dart:collection" as _; |
| |
| static method test() → dynamic { |
| invalid-expression "pkg/front_end/testcases/wildcard_variables/import_prefix.dart:8:3: Error: Undefined name '_'. |
| _.Queue<int>(); |
| ^"{dynamic}.Queue<core::int>(); |
| invalid-expression "pkg/front_end/testcases/wildcard_variables/import_prefix.dart:9:3: Error: Method not found: 'Queue'. |
| Queue<int>(); |
| ^^^^^"; |
| col::IterableExtensions|get#firstOrNull<core::int>(<core::int>[1]); |
| } |