summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-05-17 02:02:16 -0700
committerJason Zaugg <jzaugg@gmail.com>2013-05-17 02:02:16 -0700
commit7415430ca7f7995f870dd81b2f020afeeb6e316e (patch)
treeb4547056abf2bfd45fe6fc90a017e43718749dd6 /test/files/pos
parent988e27adf95ba5177603b52c52cbae180d577b1a (diff)
parentbc1071580203eda3f90433d930739f55a696a131 (diff)
downloadscala-7415430ca7f7995f870dd81b2f020afeeb6e316e.tar.gz
scala-7415430ca7f7995f870dd81b2f020afeeb6e316e.tar.bz2
scala-7415430ca7f7995f870dd81b2f020afeeb6e316e.zip
Merge pull request #2497 from scalamacros/topic/macro-qqq
easy way of writing not implemented macros
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/macro-qmarkqmarkqmark.check0
-rw-r--r--test/files/pos/macro-qmarkqmarkqmark.scala7
2 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/macro-qmarkqmarkqmark.check b/test/files/pos/macro-qmarkqmarkqmark.check
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/test/files/pos/macro-qmarkqmarkqmark.check
diff --git a/test/files/pos/macro-qmarkqmarkqmark.scala b/test/files/pos/macro-qmarkqmarkqmark.scala
new file mode 100644
index 0000000000..a91e4320b6
--- /dev/null
+++ b/test/files/pos/macro-qmarkqmarkqmark.scala
@@ -0,0 +1,7 @@
+import language.experimental.macros
+
+object Macros {
+ def foo1 = macro ???
+ def foo2(x: Int) = macro ???
+ def foo3[T] = macro ???
+} \ No newline at end of file