aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/typedapply.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-12-02 18:04:05 +0100
committerMartin Odersky <odersky@gmail.com>2013-12-02 18:04:05 +0100
commit14528228331bdb588278002208c46447e164870c (patch)
tree62e8ccdc7475c597af2f86628415ec29b90b4a2d /tests/neg/typedapply.scala
parentbddeaecb8f69032c5117e926ef67afc0deedd0dd (diff)
downloaddotty-14528228331bdb588278002208c46447e164870c.tar.gz
dotty-14528228331bdb588278002208c46447e164870c.tar.bz2
dotty-14528228331bdb588278002208c46447e164870c.zip
Fixes to type applications and unapply.
Diffstat (limited to 'tests/neg/typedapply.scala')
-rw-r--r--tests/neg/typedapply.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/neg/typedapply.scala b/tests/neg/typedapply.scala
new file mode 100644
index 000000000..ae168bcd9
--- /dev/null
+++ b/tests/neg/typedapply.scala
@@ -0,0 +1,17 @@
+object typedapply {
+
+ def foo[X, Y](x: X, y: Y) = (x, y)
+
+ foo[Int](1, "abc")
+
+ foo[Int, String, String](1, "abc")
+
+ def bar(x: Int) = x
+
+ bar[Int](1)
+
+ def baz[X >: Y, Y <: String](x: X, y: Y) = (x, y)
+
+ baz[Int, String](1, "abc")
+
+} \ No newline at end of file