summaryrefslogtreecommitdiff
path: root/test/files/neg/eta-expand-star-deprecation.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/eta-expand-star-deprecation.scala')
-rw-r--r--test/files/neg/eta-expand-star-deprecation.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/neg/eta-expand-star-deprecation.scala b/test/files/neg/eta-expand-star-deprecation.scala
deleted file mode 100644
index 5749692522..0000000000
--- a/test/files/neg/eta-expand-star-deprecation.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test {
- def f[T](xs: T*): Unit = ()
- def g[T] = f[T] _
-
- def main(args: Array[String]): Unit = {
- g(1, 2)
- }
-}