blob: 3531cb6b6bf2e3f649ce1ee6ce8164bf0ceb7f4f [file] [log] [blame] [edit]
//
// Problems outside component:
//
// Error: Invalid package URI 'package:foobar1':
// Package URIs must start with the package name followed by a '/'.
//
// Error: Invalid package URI 'package:foobar2':
// Package URIs must start with the package name followed by a '/'.
//
library;
//
// Problems in library:
//
// pkg/front_end/testcases/regress/issue_59606.dart:5:8: Error: Not found: 'package:foobar1'
// import 'package:foobar1' as a;
// ^
//
// pkg/front_end/testcases/regress/issue_59606.dart:6:8: Error: Not found: 'package:foobar2'
// import 'package:foobar%32' as b;
// ^
//
import self as self;
import "package:foobar1" as a;
import "package:foobar2" as b;