Introduce JavaAgainstKotlinBinariesTest
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class WithClassObject {
|
||||
companion object {
|
||||
fun foo() {}
|
||||
|
||||
val value: Int = 0
|
||||
val valueWithGetter: Int
|
||||
get() = 1
|
||||
|
||||
var variable: Int = 0
|
||||
var variableWithAccessors: Int
|
||||
get() = 0
|
||||
set(v) {}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user