Files
kotlin/compiler/testData/codegen/bytecodeListing/inlineClasses/computablePropertiesInsideInlineClass.kt
2018-02-09 04:57:20 +03:00

6 lines
123 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
inline class Foo(val x: Int) {
val prop: Int get() = 1
val asThis: Foo get() = this
}