summaryrefslogtreecommitdiff
path: root/test/files/neg/t7046-2/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t7046-2/Test_2.scala')
-rw-r--r--test/files/neg/t7046-2/Test_2.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/neg/t7046-2/Test_2.scala b/test/files/neg/t7046-2/Test_2.scala
new file mode 100644
index 0000000000..18a2ebcbc2
--- /dev/null
+++ b/test/files/neg/t7046-2/Test_2.scala
@@ -0,0 +1,14 @@
+object Test extends App {
+ def nested: Unit = {
+ val subs = Macros.knownDirectSubclasses[Foo]
+ assert(subs == List("Bar", "Baz"))
+
+ sealed trait Foo
+ object Foo {
+ trait Bar extends Foo
+ trait Baz extends Foo
+ }
+ }
+
+ nested
+}