summaryrefslogtreecommitdiff
path: root/test/files/run/t9387.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-07-09 14:24:30 +1000
committerLukas Rytz <lukas.rytz@gmail.com>2015-07-23 15:02:24 +0200
commitf5e72765f2705c9bad2d87c4222ee64a2500f2fe (patch)
treeda7b46c0053bbea4639795952072e246946f2d1a /test/files/run/t9387.scala
parent41b99e25317cc50a6ae6afa1a5527694236528ff (diff)
downloadscala-f5e72765f2705c9bad2d87c4222ee64a2500f2fe.tar.gz
scala-f5e72765f2705c9bad2d87c4222ee64a2500f2fe.tar.bz2
scala-f5e72765f2705c9bad2d87c4222ee64a2500f2fe.zip
[backport] SI-9387 Fix VerifyError introduced by indylambda
As with regular `Apply`-s, we should compute the generated type based on the function's type, rather than the expected type. In the test case, the expected type was void. Now, we correctly use the generated type of `scala/Function1`, which is enough to generate a subsequent POP instruction. The tree shape involved was: ``` arg0 = { { $anonfun() }; scala.runtime.BoxedUnit.UNIT } ```
Diffstat (limited to 'test/files/run/t9387.scala')
-rw-r--r--test/files/run/t9387.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/files/run/t9387.scala b/test/files/run/t9387.scala
new file mode 100644
index 0000000000..3e33d19fd2
--- /dev/null
+++ b/test/files/run/t9387.scala
@@ -0,0 +1,20 @@
+class G[T]
+object G {
+ def v[T](x: T): G[T] = null
+}
+
+class A[T]
+object A {
+ def apply[T](x: => G[T]): A[T] = null
+}
+
+object T {
+ A[Unit](G.v(() => ())) // Was VerifyError
+}
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ T
+ }
+
+} \ No newline at end of file