Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
ir
/
irText
/
declarations
/
interfaceProperties.kt
blob: 63222d2d5316b21d35f624e5717aa9a46787a3dc [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
// WITH_STDLIB
interface
C
{
val test1
:
Int
val test2
:
Int
get
()
=
0
var
test3
:
Int
var
test4
:
Int
get
()
=
0
;
set
(
value
)
{}
}