Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f9ad0c0bf79eab445d91c2baa5ab471640e811f
/
.
/
plugins
/
sam-with-receiver
/
testData
/
diagnostics
/
singleParameterWithoutAnnotation.fir.kt
blob: 0601a128cdc8caa3aab2c8b5d217688cee2a1b6c [
file
]
// FILE: Sam.java
public
interface
Sam
{
void
run
(
String
a
);
}
// FILE: test.kt
fun test
()
{
Sam
{
a
->
System
.
out
.
println
(
a
)
}
Sam
{
val a
=
<!
NO_THIS
!>
this
<!>
System
.
out
.<!
OVERLOAD_RESOLUTION_AMBIGUITY
!>
println
<!>(
a
)
}
}