Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt3118.kt
blob: b95ea4ad3b48cb792dae2e849923091e0c432363 [
file
]
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"
}