mirror of https://github.com/sbt/sbt.git
specify explicit type to work around 2.11 volatile override error
This commit is contained in:
parent
9b1cdb7534
commit
ca0d2b05cc
|
|
@ -60,7 +60,7 @@ object KListBuilder extends TupleBuilder
|
|||
val representationC = PolyType(tcVariable :: Nil, klistType)
|
||||
val resultType = appliedType(representationC, idTC :: Nil)
|
||||
val input = klist
|
||||
val alistInstance = TypeApply(select(Ident(alist), "klist"), TypeTree(representationC) :: Nil)
|
||||
val alistInstance: ctx.universe.Tree = TypeApply(select(Ident(alist), "klist"), TypeTree(representationC) :: Nil)
|
||||
def extract(param: ValDef) = bindKList(param, Nil, inputs.map(_.local))
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue