summaryrefslogtreecommitdiff
path: root/test/files/run/t6411.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-01-24 21:02:57 +0300
committerEugene Burmako <xeno.by@gmail.com>2014-01-24 23:01:20 +0300
commit32a02d6f7c697870c071b86e6552740bcced7697 (patch)
treef12b408aab72b0d23950ba1386cc4d20ec869c09 /test/files/run/t6411.check
parent8b87327d4a3e8145c5716ec4883c497d86739281 (diff)
downloadscala-32a02d6f7c697870c071b86e6552740bcced7697.tar.gz
scala-32a02d6f7c697870c071b86e6552740bcced7697.tar.bz2
scala-32a02d6f7c697870c071b86e6552740bcced7697.zip
updates the test for by-name value class parameters
Diffstat (limited to 'test/files/run/t6411.check')
-rw-r--r--test/files/run/t6411.check16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/run/t6411.check b/test/files/run/t6411.check
index 03055b5a8a..9226146195 100644
--- a/test/files/run/t6411.check
+++ b/test/files/run/t6411.check
@@ -38,6 +38,14 @@ meth = method yl_5
as seen by Scala reflection: def yl_5(ys: List[Y[String]]): List[String]
as seen by Java reflection: public scala.collection.immutable.List a$.yl_5(scala.collection.immutable.List)
result = List(5)
+meth = method yni_7
+as seen by Scala reflection: def yni_7(y: => Y[Int]): Int
+as seen by Java reflection: public int a$.yni_7(scala.Function0)
+result = 7
+meth = method yns_8
+as seen by Scala reflection: def yns_8(y: => Y[String]): String
+as seen by Java reflection: public java.lang.String a$.yns_8(scala.Function0)
+result = 8
meth = method zg_1
as seen by Scala reflection: def zg_1[T](z: Z[T]): T
as seen by Java reflection: public java.lang.Object a$.zg_1(Z)
@@ -78,3 +86,11 @@ meth = method zl_5
as seen by Scala reflection: def zl_5(zs: List[Z[String]]): List[String]
as seen by Java reflection: public scala.collection.immutable.List a$.zl_5(scala.collection.immutable.List)
result = List(5)
+meth = method zni_7
+as seen by Scala reflection: def zni_7(z: => Z[Int]): Int
+as seen by Java reflection: public int a$.zni_7(scala.Function0)
+result = 7
+meth = method zns_8
+as seen by Scala reflection: def zns_8(z: => Z[String]): String
+as seen by Java reflection: public java.lang.String a$.zns_8(scala.Function0)
+result = 8