aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t7008/Test_3.scala
blob: 00e0eb684a124caa62454980760c9ea05c112de5 (plain) (blame)
1
2
3
4
5
6
7
8
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}"))
}