Files
kotlin/compiler/testData/loadJava/compiledJava/sam/adapters/ConstructorWithAnnotations.java

11 lines
205 B
Java
Vendored

package test;
import org.jetbrains.annotations.NotNull;
import java.lang.String;
public class ConstructorWithAnnotations {
public ConstructorWithAnnotations(Runnable r, @NotNull String s) {
}
}