9ae16fd66e
Mute them for the old JVM backend instead. JVM IR behavior is fine in all cases except maybe `destructured.kt`, for which there's now an issue KT-63075.
37 lines
1.3 KiB
Plaintext
Vendored
37 lines
1.3 KiB
Plaintext
Vendored
@kotlin.Metadata
|
|
public abstract class AbstractNumber {
|
|
// source: 'number.kt'
|
|
public method <init>(): void
|
|
public bridge final method byteValue(): byte
|
|
public bridge final method doubleValue(): double
|
|
public bridge final method floatValue(): float
|
|
public bridge final method intValue(): int
|
|
public bridge final method longValue(): long
|
|
public bridge final method shortValue(): short
|
|
public abstract method toByte(): byte
|
|
public abstract method toDouble(): double
|
|
public abstract method toFloat(): float
|
|
public abstract method toInt(): int
|
|
public abstract method toLong(): long
|
|
public abstract method toShort(): short
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class MyNumber {
|
|
// source: 'number.kt'
|
|
public method <init>(): void
|
|
public bridge final method byteValue(): byte
|
|
public bridge final method doubleValue(): double
|
|
public bridge final method floatValue(): float
|
|
public bridge final method intValue(): int
|
|
public bridge final method longValue(): long
|
|
public bridge final method shortValue(): short
|
|
public method toByte(): byte
|
|
public method toChar(): char
|
|
public method toDouble(): double
|
|
public method toFloat(): float
|
|
public method toInt(): int
|
|
public method toLong(): long
|
|
public method toShort(): short
|
|
}
|