aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-02-10 13:19:27 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-02-11 11:37:48 +0100
commitfb84ab55f4fd234c35ad85083092e9c5fe676370 (patch)
treea3173efbd870b56d1ace69ccc0eedca0566b5902 /tests/disabled
parent89e897072e75ea0644f6d728cf062f4fa7981443 (diff)
downloaddotty-fb84ab55f4fd234c35ad85083092e9c5fe676370.tar.gz
dotty-fb84ab55f4fd234c35ad85083092e9c5fe676370.tar.bz2
dotty-fb84ab55f4fd234c35ad85083092e9c5fe676370.zip
Disable t2667 that fails inside Extension methods.
This info transformation was left untriggered before backend was enabled.
Diffstat (limited to 'tests/disabled')
-rw-r--r--tests/disabled/t2667.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/disabled/t2667.scala b/tests/disabled/t2667.scala
new file mode 100644
index 000000000..600c1eaf0
--- /dev/null
+++ b/tests/disabled/t2667.scala
@@ -0,0 +1,7 @@
+// ExtensionMethods info transformer fails here for AnyVal$
+object A {
+ def foo(x: Int, y: Int*): Int = 45
+ def foo[T](x: T*): Int = 55
+
+ val x: Unit = foo(23, 23f)
+}