b40a888f1d
#KT-35093 Fixed #KT-35106 Fixed
29 lines
442 B
Kotlin
Vendored
29 lines
442 B
Kotlin
Vendored
interface Some {
|
|
fun f1()
|
|
fun f2()
|
|
fun f3()
|
|
/* test */
|
|
fun f4()
|
|
/* test */ fun f5()
|
|
/**
|
|
* test
|
|
* 2
|
|
*/
|
|
fun f6()
|
|
fun f7()
|
|
@NotNull
|
|
fun f8()
|
|
fun f9()
|
|
}
|
|
|
|
abstract class Abstract() {
|
|
abstract fun f1()
|
|
abstract fun f2()
|
|
// test
|
|
abstract fun f3()
|
|
// test
|
|
/* test */ abstract fun f4()
|
|
abstract fun f5()
|
|
abstract fun f6()
|
|
/* test */ abstract fun f7()
|
|
} |