langtools/test/tools/javac/types/TypeHarness.java
changeset 16967 79d444669f3f
parent 9087 e9e44877cd18
child 20249 93f8eae31092
--- a/langtools/test/tools/javac/types/TypeHarness.java	Thu Apr 11 19:15:56 2013 -0700
+++ b/langtools/test/tools/javac/types/TypeHarness.java	Fri Apr 12 12:05:04 2013 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -309,7 +309,7 @@
         }
 
         public TypeVar TypeVariable(Type bound) {
-            TypeSymbol tvsym = new TypeSymbol(0, syntheticName(), null, predef.noSymbol);
+            TypeSymbol tvsym = new TypeVariableSymbol(0, syntheticName(), null, predef.noSymbol);
             tvsym.type = new TypeVar(tvsym, bound, null);
             return (TypeVar)tvsym.type;
         }