summaryrefslogtreecommitdiff
path: root/test/files/res/t9170/A.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/res/t9170/A.scala')
-rw-r--r--test/files/res/t9170/A.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/res/t9170/A.scala b/test/files/res/t9170/A.scala
new file mode 100644
index 0000000000..239df89679
--- /dev/null
+++ b/test/files/res/t9170/A.scala
@@ -0,0 +1,4 @@
+object Y {
+ def f[A](a: => A) = 1
+ def f[A](a: => Either[Exception, A]) = 2
+}