summaryrefslogtreecommitdiff
path: root/test/files/pos/t5305.scala
blob: c0237ca3bd61d2e0a832b34d30741b7c08c5946a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
object t5305 {
  def in(a: Any) = {}

  object O {
    type F = Int
    val v = ""
  }

  in {
    import O.{F, v}
    type x = {type l = (F, v.type)} // not found: type F
  }
}