Add ABI tests for classes extending Number and CharSequence
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
@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
|
||||
}
|
||||
|
||||
@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
|
||||
}
|
||||
Reference in New Issue
Block a user