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, 0 insertions, 11 deletions
diff --git a/test/pending/pos/t6225.scala b/test/pending/pos/t6225.scala
deleted file mode 100644
index d7dff3c419..0000000000
--- a/test/pending/pos/t6225.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-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] }
-}