aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/backend/jvm
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-05-15 13:56:12 +0200
committerMartin Odersky <odersky@gmail.com>2015-05-21 17:41:13 +0200
commit3d9d90e1a29a80f9df968a0e53e01ecb31c397c7 (patch)
treebfe840e089e8c49a4b6b9c0cb45dc27e5c4ea9ea /src/dotty/tools/backend/jvm
parent89145d0e166a3042d7530b037a5664f3b1d4f22e (diff)
downloaddotty-3d9d90e1a29a80f9df968a0e53e01ecb31c397c7.tar.gz
dotty-3d9d90e1a29a80f9df968a0e53e01ecb31c397c7.tar.bz2
dotty-3d9d90e1a29a80f9df968a0e53e01ecb31c397c7.zip
Make normalizeToRef survive annotated types
Did not handle this case before.
Diffstat (limited to 'src/dotty/tools/backend/jvm')
-rw-r--r--src/dotty/tools/backend/jvm/GenBCode.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/backend/jvm/GenBCode.scala b/src/dotty/tools/backend/jvm/GenBCode.scala
index 7729c3011..db376a452 100644
--- a/src/dotty/tools/backend/jvm/GenBCode.scala
+++ b/src/dotty/tools/backend/jvm/GenBCode.scala
@@ -38,7 +38,7 @@ class GenBCode extends Phase {
def run(implicit ctx: Context): Unit = {
- new GenBCodePipeline(entryPoints.toList, new DottyBackendInterface()(ctx))(ctx).run(ctx.compilationUnit.tpdTree)
+ new GenBCodePipeline(entryPoints.toList, new DottyBackendInterface()(ctx))(ctx).run(ctx.compilationUnit.tpdTree)
entryPoints.clear()
}
}