summaryrefslogtreecommitdiff
path: root/test/files/res/t9170.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/res/t9170.check')
-rw-r--r--test/files/res/t9170.check7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/res/t9170.check b/test/files/res/t9170.check
new file mode 100644
index 0000000000..6d40b6ba8d
--- /dev/null
+++ b/test/files/res/t9170.check
@@ -0,0 +1,7 @@
+
+nsc> t9170/A.scala:3: error: double definition:
+def f[A](a: => A): Int at line 2 and
+def f[A](a: => Either[Exception,A]): Int at line 3
+have same type after erasure: (a: Function0)Int
+ def f[A](a: => Either[Exception, A]) = 2
+ ^