summaryrefslogtreecommitdiff
path: root/test/pending/pos/t6225.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t6225.scala')
-rw-r--r--test/pending/pos/t6225.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/pending/pos/t6225.scala b/test/pending/pos/t6225.scala
new file mode 100644
index 0000000000..d7dff3c419
--- /dev/null
+++ b/test/pending/pos/t6225.scala
@@ -0,0 +1,11 @@
+package library.x {
+ class X {
+ class Foo
+ implicit val foo = new Foo
+ }
+}
+package library { package object x extends X }
+package app {
+ import library.x._
+ object App { implicitly[Foo] }
+}