c251eb19a6
In this commit, .ir.txt expectation test data files for the JVM IR backend are renamed to .txt. This is done as two separate commits so that Git would recognize that these files were logically moved, not that the contents of the original .txt files were changed. #KT-64680
39 lines
693 B
Plaintext
Vendored
39 lines
693 B
Plaintext
Vendored
package error;
|
|
|
|
public final class NonExistentClass {
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
@Anno()
|
|
@kotlin.Metadata()
|
|
public final class User {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String name = "John";
|
|
|
|
public User(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String name, int age) {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getName() {
|
|
return null;
|
|
}
|
|
|
|
public User() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
|
@kotlin.Metadata()
|
|
public abstract @interface Anno {
|
|
}
|