Files
sdk/tests/standalone_2/package/invalid_uri_test.dart
T
Johnni Winther dda5bcee00 [cfe] Handle invalid uri in opt-out work-around
Change-Id: Id5e8ee4578d6ff245e1345500e58ee3f800130ed
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/137782
Reviewed-by: Jens Johansen <jensj@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
2020-02-28 11:47:51 +00:00

11 lines
346 B
Dart

// Copyright (c) 2012, 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.
library invalid_uri_test;
// Should not contain "//".
import 'package://lib1.dart'; //# 01: compile-time error
void main() {}