mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-24 08:31:30 +00:00
11 lines
205 B
Java
Vendored
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) {
|
|
}
|
|
}
|