blob: 8a4833576120385f5cb5a4b3e9cb3599928baa41 [file]
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 {
}