summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2016-02-10 17:35:24 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2016-02-12 15:55:30 -0800
commitbaee820b32f6e71907658ad6386e0d79e726e761 (patch)
tree22b74ce039725acb6755a6bf46f0b53f30b44f9d /test
parentda3f7177232e7c0732d5b7d2929dbb8271d7b395 (diff)
downloadscala-baee820b32f6e71907658ad6386e0d79e726e761.tar.gz
scala-baee820b32f6e71907658ad6386e0d79e726e761.tar.bz2
scala-baee820b32f6e71907658ad6386e0d79e726e761.zip
SI-9540 typedFunction is erasure aware
When typer is running during erasure, must assign erased FunctionType in typedFunction. This removes a bunch of unneeded casts now we no longer assign a half-erased FunctionType. I poked around a bit, and it looks like erasure doesn't want typer to erase built-in types (like Unit/Any/Nothing). They are already treated specially during erasure.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/delambdafy_t6028.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/delambdafy_t6028.check b/test/files/run/delambdafy_t6028.check
index c8c4b1cb4c..b5a6e4b64e 100644
--- a/test/files/run/delambdafy_t6028.check
+++ b/test/files/run/delambdafy_t6028.check
@@ -11,7 +11,7 @@ package <empty> {
def foo(methodParam: String): Function0 = {
val methodLocal: String = "";
{
- (() => T.this.$anonfun$1(methodParam, methodLocal)).$asInstanceOf[Function0]()
+ (() => T.this.$anonfun$1(methodParam, methodLocal))
}
};
def bar(barParam: String): Object = {
@@ -21,7 +21,7 @@ package <empty> {
def tryy(tryyParam: String): Function0 = {
var tryyLocal: runtime.ObjectRef = scala.runtime.ObjectRef.create("");
{
- (() => T.this.$anonfun$2(tryyParam, tryyLocal)).$asInstanceOf[Function0]()
+ (() => T.this.$anonfun$2(tryyParam, tryyLocal))
}
};
final <artifact> private[this] def $anonfun$1(methodParam$1: String, methodLocal$1: String): String = T.this.classParam.+(T.this.field()).+(methodParam$1).+(methodLocal$1);