Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
145b5051f737bcd07fb6d5440a722cea8ba3f98c
/
.
/
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"
}