aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/TypeErasure.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-10-13 02:05:30 +0200
committerGuillaume Martres <smarter@ubuntu.com>2016-10-13 02:08:12 +0200
commit6e78c7aff351de5e5c8ccddc319744a4f976d79c (patch)
tree734fe4470856c936a392b66dedcf8d6dba6eac58 /src/dotty/tools/dotc/core/TypeErasure.scala
parent1c62d0557417612fb90108fd6a3728d7c510f968 (diff)
downloaddotty-6e78c7aff351de5e5c8ccddc319744a4f976d79c.tar.gz
dotty-6e78c7aff351de5e5c8ccddc319744a4f976d79c.tar.bz2
dotty-6e78c7aff351de5e5c8ccddc319744a4f976d79c.zip
Fix erasure of "def foo[T]: Unit", do not box the return type
Diffstat (limited to 'src/dotty/tools/dotc/core/TypeErasure.scala')
-rw-r--r--src/dotty/tools/dotc/core/TypeErasure.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/TypeErasure.scala b/src/dotty/tools/dotc/core/TypeErasure.scala
index fd5fcb921..254ea3277 100644
--- a/src/dotty/tools/dotc/core/TypeErasure.scala
+++ b/src/dotty/tools/dotc/core/TypeErasure.scala
@@ -417,7 +417,7 @@ class TypeErasure(isJava: Boolean, semiEraseVCs: Boolean, isConstructor: Boolean
// See doc comment for ElimByName for speculation how we could improve this.
else MethodType(Nil, Nil, eraseResult(rt))
case tp: PolyType =>
- this(tp.resultType) match {
+ eraseResult(tp.resultType) match {
case rt: MethodType => rt
case rt => MethodType(Nil, Nil, rt)
}