mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Also add tests checking that annotations on 'invoke' methods of common lambdas are saved properly #KT-6932 Fixed
8 lines
125 B
Java
8 lines
125 B
Java
import java.lang.Runnable;
|
|
|
|
class Test {
|
|
public static Class<?> apply(Runnable x) {
|
|
return x.getClass();
|
|
}
|
|
}
|