// FIR_IDENTICAL // FILE: Sam.java @SamWithReceiver public interface Sam { void run(); } // FILE: test.kt annotation class SamWithReceiver fun test() { Sam { System.out.println("Hello, world!") } Sam { val a: String = this System.out.println(a) } }