Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
)
}
}