Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
implement
/
privateNestedWithConflict.kt
blob: b52a9acca7a131d3d97dcdcf56aa43507c886b79 [
file
] [
log
] [
blame
]
// "Create subclass" "true"
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
class
Container
{
private
open
class
<caret>
Base
{
open
var
x
:
String
=
""
open fun foo
():
String
=
""
}
private
class
BaseImpl
:
Base
()
}