aboutsummaryrefslogtreecommitdiff
path: root/src/typedapply.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/typedapply.scala')
-rw-r--r--src/typedapply.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/typedapply.scala b/src/typedapply.scala
deleted file mode 100644
index 8496d528b..000000000
--- a/src/typedapply.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object typedapply {
-
- def foo[X, Y](x: X, y: Y) = (x, y)
-
- foo(1, "abc")
-
- foo[Int, String](1, "abc")
-
- foo[Int, String] _
-
-}