bfd539d5d1
#KT-12490 Fixed #KT-35088 Fixed
10 lines
206 B
Kotlin
Vendored
10 lines
206 B
Kotlin
Vendored
class Some(b: Boolean) {
|
|
// Comment.
|
|
constructor(b: Int) : this(b == 0)
|
|
/**
|
|
* test
|
|
* 2
|
|
*/
|
|
constructor(b: String) : this(b.isEmpty())
|
|
constructor(b: Long) : this(b == 0L)
|
|
} |