aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6225.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6225.scala')
-rw-r--r--tests/pending/pos/t6225.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/pending/pos/t6225.scala b/tests/pending/pos/t6225.scala
deleted file mode 100644
index d3d30d9e1..000000000
--- a/tests/pending/pos/t6225.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-
-package library.x {
- class X {
- class Foo
- implicit val foo: Foo = new Foo
- }
-}
-package library {
- package object y extends library.x.X
-}
-
-object ko {
- import library.y.{Foo, foo}
- implicitly[Foo]
-}
-
-object ko2 {
- import library.y._
- implicitly[Foo]
-}