summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-05-07 23:58:24 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-05-07 23:58:24 +0200
commit8d8b2caa95a5cb1b2a30b63c35b0a8a5ab25012c (patch)
tree69be607eac9a2154e69de84ca8c5ea966135f74e /test/pending/run
parent7cac6334d4437ff54c4979799574045501f64135 (diff)
downloadscala-8d8b2caa95a5cb1b2a30b63c35b0a8a5ab25012c.tar.gz
scala-8d8b2caa95a5cb1b2a30b63c35b0a8a5ab25012c.tar.bz2
scala-8d8b2caa95a5cb1b2a30b63c35b0a8a5ab25012c.zip
test for SI-5722
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/t5722.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/pending/run/t5722.scala b/test/pending/run/t5722.scala
new file mode 100644
index 0000000000..21ace060d6
--- /dev/null
+++ b/test/pending/run/t5722.scala
@@ -0,0 +1,6 @@
+object Test extends App {
+ def foo[T: ClassTag] = println(classOf[T])
+ foo[Int]
+ foo[Array[Int]]
+ foo[List[Int]]
+} \ No newline at end of file