summaryrefslogtreecommitdiff
path: root/test/files/pos/t3772.scala
blob: 62c433ebd1215979ac988477a8b609251975c6f0 (plain) (blame)
1
2
3
4
5
6
7
8
class Test {
  def m = {
    case class C(c: Int)
    object C { def xxx = true}
    C(42).c
    C.xxx
  }
}