summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/refine.scala
blob: 5d175f26f547b89ac9154565c05ccc25ff0e8fb2 (plain) (blame)
1
2
3
4
5
6
object test {

  val x: Object { def t(): String } = new Object {
    def t(): String = "1";
  }
}