| Index: compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
|
| index afa67a4247f0af8da774d230a41ccae80f6072e3..5d5847bbc26adf2ceb87a4bc64f1bde869e3600e 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
|
| @@ -1215,8 +1215,8 @@ public class ResolverTest extends ResolverTestCase {
|
| " static foo() { new T(); }", // can't ref type variable in method
|
| " static bar() { T variable = 1; }",
|
| "}"),
|
| - errEx(TypeErrorCode.TYPE_VARIABLE_IN_STATIC_CONTEXT, 3, 22 , 1),
|
| - errEx(TypeErrorCode.TYPE_VARIABLE_IN_STATIC_CONTEXT, 4, 18, 1));
|
| + errEx(ResolverErrorCode.TYPE_VARIABLE_IN_STATIC_CONTEXT, 3, 22 , 1),
|
| + errEx(ResolverErrorCode.TYPE_VARIABLE_IN_STATIC_CONTEXT, 4, 18, 1));
|
| }
|
|
|
| public void testConstClass() {
|
|
|