summaryrefslogtreecommitdiff
path: root/test/files/pos/t5305.scala
blob: 4c32cd7c6dd6c743aa64518146ba22de6def1eb4 (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
  }
}