7f50e6e70e
(cherry picked from commit 93aaa48)
7 lines
111 B
Plaintext
Vendored
7 lines
111 B
Plaintext
Vendored
class Protected {
|
|
internal var s: String
|
|
|
|
protected constructor(s: String) {
|
|
this.s = s
|
|
}
|
|
} |