mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Fix for test data (inlineFunctionInsideInlineClassesBox.kt) is needed to avoid check about "no inline functions". This check has two steps: first, names of inline functions from the metadata are loaded, then these names are checked that they are presented for physical methods in the classfile. Because now there are no physical methods in the classfile, we can't pass the second check, therefore this fix is needed. #KT-24872 Fixed
22 lines
879 B
Plaintext
Vendored
22 lines
879 B
Plaintext
Vendored
@kotlin.Metadata
|
|
public final static class Foo$Erased {
|
|
public final static @org.jetbrains.annotations.NotNull method box(p0: int): Foo
|
|
public static method constructor(p0: int): int
|
|
public static method equals(p0: int, @org.jetbrains.annotations.Nullable p1: java.lang.Object): boolean
|
|
public final static method getAsThis(p0: int): int
|
|
public final static method getProp(p0: int): int
|
|
public static method hashCode(p0: int): int
|
|
public static @org.jetbrains.annotations.NotNull method toString(p0: int): java.lang.String
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class Foo {
|
|
private final field x: int
|
|
public method <init>(p0: int): void
|
|
public method equals(p0: java.lang.Object): boolean
|
|
public final method getX(): int
|
|
public method hashCode(): int
|
|
public method toString(): java.lang.String
|
|
public final method unbox(): int
|
|
}
|