725df49c8c
(cherry picked from commit f3fa779)
8 lines
119 B
Kotlin
Vendored
8 lines
119 B
Kotlin
Vendored
class Protected {
|
|
internal var s: String
|
|
|
|
protected <caret>constructor(s: String) {
|
|
this.s = s
|
|
}
|
|
}
|