blob: 1d196e821b7cc63551d7cdfa038e507e5544b557 [file] [log] [blame]
// "Make 'First' private" "true"
// ACTION: Make 'Data' public
class Other {
internal open class Data(val x: Int)
}
class Another {
private class First : Other.Data(42)
}