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