| Index: compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
 | 
| diff --git a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
 | 
| index a70e254f98c1a1bd0c10f06060e9e6b08b2f2da8..b904a6d8089412d71cd7fa6f50889052354ccd87 100644
 | 
| --- a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
 | 
| +++ b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
 | 
| @@ -209,11 +209,12 @@ abstract class ResolverTestCase extends TestCase {
 | 
|        functionElement.setType(functionType);
 | 
|  
 | 
|        ClassElement mapElement = Elements.classNamed("Map");
 | 
| -      defaultMapLiteralType = Types.interfaceType(mapElement, Lists.newArrayList(stringType, dynamicType));
 | 
| +      defaultMapLiteralType =
 | 
| +          Types.interfaceType(mapElement, Lists.<Type>newArrayList(stringType, dynamicType));
 | 
|        mapElement.setType(defaultMapLiteralType);
 | 
|  
 | 
|        ClassElement listElement = Elements.classNamed("List");
 | 
| -      defaultListType = Types.interfaceType(listElement, Lists.newArrayList(dynamicType));
 | 
| +      defaultListType = Types.interfaceType(listElement, Lists.<Type>newArrayList(dynamicType));
 | 
|        listElement.setType(defaultListType);
 | 
|      }
 | 
|  
 | 
| 
 |