Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
defaultArguments
/
useThisInLambda.kt
blob: b2f4da366379452b4be3e7c5c101daee3c6de4ec [
file
] [
log
] [
blame
]
class
X
{
fun g
(
x
:
()
->
Boolean
=
{
super
.
equals
(
this
)
})
=
x
()
}
fun box
():
String
{
return
if
(
X
().
g
())
"OK"
else
"Fail: false"
}