bfd539d5d1
#KT-12490 Fixed #KT-35088 Fixed
25 lines
445 B
Plaintext
Vendored
25 lines
445 B
Plaintext
Vendored
// My: to be implemented
|
|
// DISABLE-ERRORS
|
|
/**
|
|
* Dokka comment: class to be created as expect
|
|
*/
|
|
expect class My {
|
|
fun foo(param: String): Int
|
|
fun String.bar(y: Double): Boolean
|
|
|
|
/**
|
|
* Dokka comment: Just does nothing
|
|
*/
|
|
fun baz()
|
|
|
|
/**
|
|
* Dokka comment: Just does nothing
|
|
*
|
|
* @flag this parameter is just ignored
|
|
*/
|
|
constructor(flag: Boolean)
|
|
|
|
val isGood: Boolean
|
|
var status: Int
|
|
|
|
} |