aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t7008
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/t7008')
-rw-r--r--tests/disabled/macro/run/t7008/Impls_Macros_2.scala13
-rw-r--r--tests/disabled/macro/run/t7008/JavaClassWithCheckedExceptions_1.java7
-rw-r--r--tests/disabled/macro/run/t7008/Test_3.scala9
3 files changed, 29 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/t7008/Impls_Macros_2.scala b/tests/disabled/macro/run/t7008/Impls_Macros_2.scala
new file mode 100644
index 000000000..3c6fe116c
--- /dev/null
+++ b/tests/disabled/macro/run/t7008/Impls_Macros_2.scala
@@ -0,0 +1,13 @@
+import language.experimental.macros
+import scala.reflect.macros.blackbox.Context
+
+object Macros {
+ def impl(c: Context) = {
+ import c.universe._
+ val decls = c.typeOf[JavaClassWithCheckedExceptions_1[_]].decls.toList
+ val s = decls.sortBy(_.name.toString).map(decl => (s"${decl.name}: ${decl.annotations}")).mkString(scala.compat.Platform.EOL)
+ reify(println(c.Expr[String](Literal(Constant(s))).splice))
+ }
+
+ def foo = macro impl
+} \ No newline at end of file
diff --git a/tests/disabled/macro/run/t7008/JavaClassWithCheckedExceptions_1.java b/tests/disabled/macro/run/t7008/JavaClassWithCheckedExceptions_1.java
new file mode 100644
index 000000000..dda212830
--- /dev/null
+++ b/tests/disabled/macro/run/t7008/JavaClassWithCheckedExceptions_1.java
@@ -0,0 +1,7 @@
+class JavaClassWithCheckedExceptions_1<E1 extends Exception> {
+ public JavaClassWithCheckedExceptions_1() throws NullPointerException {}
+
+ public void bar() throws E1 {}
+ public void baz(int x) throws IllegalStateException {}
+ public <E2 extends Exception> void foo() throws E2 {}
+} \ No newline at end of file
diff --git a/tests/disabled/macro/run/t7008/Test_3.scala b/tests/disabled/macro/run/t7008/Test_3.scala
new file mode 100644
index 000000000..00e0eb684
--- /dev/null
+++ b/tests/disabled/macro/run/t7008/Test_3.scala
@@ -0,0 +1,9 @@
+import scala.reflect.runtime.universe._
+
+object Test extends dotty.runtime.LegacyApp {
+ Macros.foo
+ println("=============")
+
+ val decls = typeOf[JavaClassWithCheckedExceptions_1[_]].decls.toList
+ decls sortBy (_.name.toString) foreach (decl => println(s"${decl.name}: ${decl.annotations}"))
+} \ No newline at end of file