Skip to content

Commit c810d5a

Browse files
committed
Fix typo in extends
1 parent 95f8a84 commit c810d5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/ast/Trees.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ object Trees {
576576
/** A type tree that defines a new type variable. Its type is always a TypeVar.
577577
* Every TypeVar is created as the type of one TypeVarBinder.
578578
*/
579-
class TypeVarBinder[-T >: Untyped] extends TypeTree
579+
class TypeVarBinder[-T >: Untyped] extends TypeTree[T]
580580

581581
/** ref.type */
582582
case class SingletonTypeTree[-T >: Untyped] private[ast] (ref: Tree[T])

0 commit comments

Comments
 (0)