Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
debug
/
stepping
/
propertyAccessor.kt
blob: 8b286241dde9d016256138702411209a68bc0f36 [
file
]
// FILE: test.kt
class
A
{
val prop
:
Int
get
()
{
return
1
}
}
fun box
()
{
A
().
prop
}
// EXPECTATIONS
// test.kt:11 box
// test.kt:3 <init>
// test.kt:11 box
// test.kt:6 getProp
// test.kt:11 box
// test.kt:12 box