aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2667.scala
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/pos/t2667.scala
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/pos/t2667.scala')
-rw-r--r--tests/pos/t2667.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/pos/t2667.scala b/tests/pos/t2667.scala
deleted file mode 100644
index 7f1f36f00..000000000
--- a/tests/pos/t2667.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-object A {
- def foo(x: Int, y: Int*): Int = 45
- def foo[T](x: T*): Int = 55
-
- val x: Unit = foo(23, 23f)
-}