Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt3118.kt
blob: 7fda0569ca9514757ea77766c71a2a0d64aa03b9 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
package
testing
class
Test
{
private
val hello
:
String
get
()
{
return
"hello"
}
fun sayHello
()
:
String
=
hello
}
fun box
():
String
{
return
if
(
Test
().
sayHello
()
==
"hello"
)
"OK"
else
"fail"
}