summaryrefslogtreecommitdiff
path: root/test/pending/pos/t6225.scala
blob: d7dff3c419decf40b737fee30ef206cc8f2d0b97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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] }
}