summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/decreaseVisibility/exposedTypeParameterBoundNested.kt
blob: da8513796cfd97b1ee5116a93b31271cf92d7951 (plain)
1
2
3
4
5
6
7
8
9
10
11
// "Make 'PrivateInFileClass' private" "false"
// ACTION: Create test
// ACTION: Enable a trailing comma by default in the formatter
// ACTION: Import members from 'PrivateInFileClass'
// ACTION: Introduce import alias
// ACTION: Make 'PrivateInnerClass' public
// ERROR: 'private-in-file' generic exposes its 'private-in-class' parameter bound type PrivateInnerClass

private class PrivateInFileClass<T : <caret>PrivateInFileClass.PrivateInnerClass> {
    private class PrivateInnerClass
}