aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2667.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t2667.scala')
-rw-r--r--tests/pos/t2667.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pos/t2667.scala b/tests/pos/t2667.scala
new file mode 100644
index 000000000..600c1eaf0
--- /dev/null
+++ b/tests/pos/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)
+}