Kapt: remove old JVM backend test data (1/2)
In this commit, .txt expectation test data files for the old JVM backend are deleted. #KT-64680
This commit is contained in:
committed by
Space Team
parent
e4a608c6e7
commit
9c67616b25
-64
@@ -1,64 +0,0 @@
|
||||
/**
|
||||
* public final class AnotherRootClass : kotlin/Any {
|
||||
*
|
||||
* // signature: <init>()V
|
||||
* public constructor()
|
||||
*
|
||||
* // module name: main
|
||||
* }
|
||||
*/
|
||||
@kotlin.Metadata()
|
||||
public final class AnotherRootClass {
|
||||
|
||||
public AnotherRootClass() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
|
||||
|
||||
/**
|
||||
* public final class RootClass : kotlin/Any {
|
||||
*
|
||||
* // signature: <init>()V
|
||||
* public constructor()
|
||||
*
|
||||
* // module name: main
|
||||
* }
|
||||
*/
|
||||
@kotlin.Metadata()
|
||||
public final class RootClass {
|
||||
|
||||
public RootClass() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
|
||||
package test;
|
||||
|
||||
/**
|
||||
* multi-file class {
|
||||
* // test/M1__BKt
|
||||
* // test/M1__CKt
|
||||
* }
|
||||
*/
|
||||
@kotlin.Metadata()
|
||||
public final class M1 {
|
||||
|
||||
public M1() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
public static final RootClass foo() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
public static final AnotherRootClass bar() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user