aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i518.scala
blob: 390437dae1376a1bb024095acc02f9f84e4808f5 (plain) (blame)
1
2
3
4
5
6
class Meter(val underlying: Int) extends AnyVal

class Test {
  val x: Int = new Meter(3).hashCode()
   // After phase VCInline the rhs should be expanded to Meter.hashCode$extension(3)
}