summaryrefslogtreecommitdiff
path: root/test/files/run/t7008-scala-defined/Test_3.scala
blob: 26178142abbdf7937486d54d6818c8f943f48f29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * filter: inliner warning; re-run with
 */
import scala.reflect.runtime.universe._

object Test extends App {
  Macros.foo
  println("=============")

  val decls = typeOf[ScalaClassWithCheckedExceptions_1[_]].decls.toList
  decls sortBy (_.name.toString) foreach (decl => println(s"${decl.name}: ${decl.annotations}"))
}