summaryrefslogtreecommitdiff
path: root/test/files/scalap/classWithExistential.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalap/classWithExistential.check')
-rw-r--r--test/files/scalap/classWithExistential.check4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/scalap/classWithExistential.check b/test/files/scalap/classWithExistential.check
new file mode 100644
index 0000000000..7df6bfb765
--- /dev/null
+++ b/test/files/scalap/classWithExistential.check
@@ -0,0 +1,4 @@
+class ClassWithExistential extends scala.AnyRef {
+ def this() = { /* compiled code */ }
+ def foo[A, B]: scala.Function1[A, B forSome {type A <: scala.Seq[scala.Int]; type B >: scala.Predef.String}] = { /* compiled code */ }
+}