Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e1e07d20949869a38f2fc0b6ceeea1235721f07f
/
.
/
plugins
/
sam-with-receiver
/
testData
/
diagnostics
/
singleParameterWithoutAnnotation.kt
blob: b186637d32d21b80f9543104a9890e14653cf14c [
file
]
// FILE: SamConstructor.kt
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
)
}
}