Index: compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java |
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java b/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java |
index 361d4c8b830ac918da044d3eb7d0324bd24a98b7..82993a7f864d7967b2463c5bb0f6391f83a25760 100644 |
--- a/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java |
+++ b/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java |
@@ -325,7 +325,11 @@ public class NegativeResolverTest extends CompilerTestCase { |
errEx(ResolverErrorCode.DUPLICATE_TOP_LEVEL_DEFINITION, 2, 5, 3), |
errEx(ResolverErrorCode.DUPLICATE_TOP_LEVEL_DEFINITION, 4, 7, 3), |
errEx(ResolverErrorCode.DUPLICATE_TOP_LEVEL_DEFINITION, 3, 5, 3), |
- errEx(ResolverErrorCode.DUPLICATE_TOP_LEVEL_DEFINITION, 5, 7, 3)); |
+ errEx(ResolverErrorCode.DUPLICATE_TOP_LEVEL_DEFINITION, 5, 7, 3), |
+ errEx(ResolverErrorCode.DUPLICATE_MEMBER, 4, 7, 3), |
+ errEx(ResolverErrorCode.DUPLICATE_MEMBER, 2, 5, 3), |
+ errEx(ResolverErrorCode.DUPLICATE_MEMBER, 5, 7, 3), |
+ errEx(ResolverErrorCode.DUPLICATE_MEMBER, 3, 5, 3)); |
} |
public void test_nameShadow_topLevel_class_getterSetter() { |