aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/typecheck/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/typecheck/Macros_1.scala')
-rw-r--r--tests/disabled/macro/run/typecheck/Macros_1.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/typecheck/Macros_1.scala b/tests/disabled/macro/run/typecheck/Macros_1.scala
new file mode 100644
index 000000000..ee1c8da76
--- /dev/null
+++ b/tests/disabled/macro/run/typecheck/Macros_1.scala
@@ -0,0 +1,12 @@
+import scala.reflect.macros.whitebox._
+import scala.language.experimental.macros
+
+object Macros {
+ def impl(c: Context) = {
+ import c.universe._
+ c.typecheck(q"class C")
+ q"()"
+ }
+
+ def foo: Any = macro impl
+} \ No newline at end of file