aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t4766.scala
blob: b7d1b6cfa7fff70c0c73588b58c40540628bc25f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.language.postfixOps
import scala.language.reflectiveCalls

object Test extends dotty.runtime.LegacyApp {
  val x = new {
    def > = 1
  }

  println(x>)
}