9265ce4ec9
Their numbers now start from 1. This is made for consistency with auto-generated sources for these types. Parameters of runtime types (written in Java) are numbered starting with 0, too.
10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
package extendFunctionClass
|
|
|
|
class <!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>A<!> : (Int) -> Int {
|
|
|
|
}
|
|
|
|
class B : Function1<Int, Int> {
|
|
override fun invoke(p1 : Int) = p1
|
|
}
|