blob: 60b8693f2d3069a2c189d1352a004a773f478556 [file]
inline class Z(val x: Int) {
fun foo() {}
}
fun testZ(z: Z) = z.foo()
fun testNZ(z: Z?) = z?.foo()
// 0 INVOKESTATIC Z\$Erased\.foo
// 0 INVOKESTATIC Z\-Erased\.foo
// 2 INVOKESTATIC Z\.foo-impl \(I\)V