Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
plugins
/
sam-with-receiver
/
testData
/
diagnostics
/
singleParameterWithoutAnnotation.fir.kt
blob: 10aca722b48d41b40c387710e9df2da9dc6a0b47 [
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
.
println
(
a
)
}
}