blob: fe6c09c339b1fff53235c4562fb18abb06551043 [file] [log] [blame]
// "Make 'Data' public" "true"
class Other {
private open class Data(val x: Int)
}
class Another {
protected class First : Other.<caret>Data(42)
}