summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-03-30 10:41:04 +0700
committerEugene Burmako <xeno.by@gmail.com>2013-05-12 22:19:01 +0200
commita35b6bc8e4369db8983d6d0d9881f37d7affbadd (patch)
treeaf58772dba3f191711607efab794982c24bfb079 /test
parentadef4b526833a804dcbc160ff67c83e42c9fc2ee (diff)
downloadscala-a35b6bc8e4369db8983d6d0d9881f37d7affbadd.tar.gz
scala-a35b6bc8e4369db8983d6d0d9881f37d7affbadd.tar.bz2
scala-a35b6bc8e4369db8983d6d0d9881f37d7affbadd.zip
macroExpandAll is now triggered in all invocations of typed
This is a port of https://github.com/scala/scala/commit/bb73b9669a from 2.10.x.
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/t5692c.check0
-rw-r--r--test/files/pos/t5692c.scala4
2 files changed, 4 insertions, 0 deletions
diff --git a/test/files/pos/t5692c.check b/test/files/pos/t5692c.check
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/test/files/pos/t5692c.check
diff --git a/test/files/pos/t5692c.scala b/test/files/pos/t5692c.scala
new file mode 100644
index 0000000000..fa5f0b2dcd
--- /dev/null
+++ b/test/files/pos/t5692c.scala
@@ -0,0 +1,4 @@
+class C {
+ def foo[T: scala.reflect.ClassTag](xs: T*): Array[T] = ???
+ foo()
+} \ No newline at end of file