specify explicit type to work around 2.11 volatile override error

This commit is contained in:
Mark Harrah 2013-07-18 22:38:16 -04:00
parent 9b1cdb7534
commit ca0d2b05cc
1 changed files with 1 additions and 1 deletions

View File

@ -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))
}
}