Files
kotlin/compiler/testData/compileJavaAgainstKotlin/targets/constructor.java

10 lines
107 B
Java
Vendored

package test;
class My {
@constructor My() {}
@constructor int foo() {
return 1;
}
}