| Index: compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java b/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| index fcd7d63fa6c23edc3d5cc752901afd736292bf1a..4b7e63fe889f01f74b53f392b839eaa2f23426f5 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| @@ -727,6 +727,23 @@ public class IncrementalCompilation2Test extends CompilerTestCase {
|
| compile();
|
| assertErrors(errors);
|
| }
|
| +
|
| + public void test_importConflict_used_inCommentRef() throws Exception {
|
| + prepare_importConflictAB();
|
| + appSource.setContent(
|
| + APP,
|
| + makeCode(
|
| + "// filler filler filler filler filler filler filler filler filler filler filler",
|
| + "library test.app;",
|
| + "import 'A.dart';",
|
| + "import 'B.dart';",
|
| + "/** [Test] */",
|
| + "main() {",
|
| + "}",
|
| + ""));
|
| + compile();
|
| + assertErrors(errors);
|
| + }
|
|
|
| private void prepare_importConflictAB() {
|
| appSource.setContent(
|
|
|