summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorFrançois Garillot <francois@garillot.net>2014-04-25 15:52:50 +0200
committerFrançois Garillot <francois@garillot.net>2014-04-25 15:52:50 +0200
commit8317266f34dce29078dc7c4447605701ba82e82a (patch)
treea12e512a8445ec6bf379359dcdfebb670483cef1 /test/files
parent57b6b90af6218e96cb554e9563199d7889c0004a (diff)
downloadscala-8317266f34dce29078dc7c4447605701ba82e82a.tar.gz
scala-8317266f34dce29078dc7c4447605701ba82e82a.tar.bz2
scala-8317266f34dce29078dc7c4447605701ba82e82a.zip
SI-8537 Puts SI-8157 fix under Xsource
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/t8157-2.10.flags1
-rw-r--r--test/files/pos/t8157-2.10.scala5
2 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t8157-2.10.flags b/test/files/pos/t8157-2.10.flags
new file mode 100644
index 0000000000..94c8056747
--- /dev/null
+++ b/test/files/pos/t8157-2.10.flags
@@ -0,0 +1 @@
+-Xsource:2.10
diff --git a/test/files/pos/t8157-2.10.scala b/test/files/pos/t8157-2.10.scala
new file mode 100644
index 0000000000..597585a96d
--- /dev/null
+++ b/test/files/pos/t8157-2.10.scala
@@ -0,0 +1,5 @@
+object Test { // PolyTYped function default arg unicity check,
+ // fails in 2.11, authorized under -Xsource:2.10
+ def foo(printer: Any, question: => String, show: Boolean = false)(op: => Any): Any = ???
+ def foo[T](question: => String, show: Boolean)(op: => Any = ()): Any = ???
+}