dfdd107fc0
Update expected outputs so they match the new sorting rules.
73 lines
1.2 KiB
Plaintext
Vendored
73 lines
1.2 KiB
Plaintext
Vendored
package error;
|
|
|
|
public final class NonExistentClass {
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
/**
|
|
* KDoc comment.
|
|
*/
|
|
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
|
|
@kotlin.Metadata()
|
|
public final class Simple {
|
|
|
|
public Simple() {
|
|
super();
|
|
}
|
|
|
|
@MyAnnotation()
|
|
public final void myMethod() {
|
|
}
|
|
|
|
public final int heavyMethod() {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public enum EnumClass {
|
|
/*public static final*/ BLACK /* = new BLACK() */,
|
|
/*public static final*/ WHITE /* = new WHITE() */;
|
|
|
|
EnumClass() {
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
|
public abstract @interface MyAnnotation {
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public enum EnumClass2 {
|
|
/*public static final*/ WHITE /* = new WHITE(null) */,
|
|
/*public static final*/ RED /* = new RED(null) */;
|
|
private final java.lang.String blah = null;
|
|
|
|
EnumClass2(java.lang.String blah) {
|
|
}
|
|
}
|