a8da79a130
* Intention to make open class with only private constructors sealed #KT-12504 Fixed * Fixed #KT-12504
6 lines
153 B
Kotlin
Vendored
6 lines
153 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
annotation class Inject
|
|
open class Test<caret> private constructor() {
|
|
private @Inject constructor(i: Int) : this() {
|
|
}
|
|
} |