From 8d8b2caa95a5cb1b2a30b63c35b0a8a5ab25012c Mon Sep 17 00:00:00 2001 From: Eugene Burmako Date: Mon, 7 May 2012 23:58:24 +0200 Subject: [PATCH] test for SI-5722 --- test/pending/run/t5722.scala | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/pending/run/t5722.scala diff --git a/test/pending/run/t5722.scala b/test/pending/run/t5722.scala new file mode 100644 index 000000000000..21ace060d66f --- /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