private inner is not visible in type param bounds (IDEA-67517)

This commit is contained in:
Anna Kozlova
2012-05-29 18:35:42 +04:00
parent 469ff21210
commit cc65b6f067
3 changed files with 13 additions and 2 deletions
@@ -0,0 +1,3 @@
class A<T extends <error descr="'A.B' has private access in 'A'">A<T>.B</error>> {
private class B {}
}