aboutsummaryrefslogtreecommitdiff
path: root/test/test/showClass.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/test/showClass.scala')
-rw-r--r--test/test/showClass.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/test/showClass.scala b/test/test/showClass.scala
new file mode 100644
index 000000000..d2c118f5d
--- /dev/null
+++ b/test/test/showClass.scala
@@ -0,0 +1,13 @@
+package test
+
+import dotty.tools.dotc.core.Decorators._
+
+object showClass extends ShowClassTests {
+
+ def main(args: Array[String]) = {
+ for (arg <- args) showPackage(ctx.requiredPackage(arg))
+// showClasses("scala.tools.jline.console.history.MemoryHistory")
+ showPackage("scala")
+ println("done")
+ }
+}