Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
function
/
boolean.kt
blob: f33c6984188cb50b7b7639f15e75d2624be3eaf4 [
file
]
fun bool_yes
():
Boolean
=
true
fun box
():
String
{
if
(!
bool_yes
())
return
"FAIL !bool_yes()"
return
"OK"
}