Change visibility on exposure now reports all possible visibilities

This commit is contained in:
Mikhail Glukhikh
2016-04-22 13:17:11 +03:00
committed by Mikhail Glukhikh
parent a2501463a8
commit e6a7cd97ff
8 changed files with 67 additions and 13 deletions
@@ -0,0 +1,9 @@
// "Make Nested public" "true"
class Outer {
private class Nested
}
class Generic<T>
internal fun foo(<caret>arg: Generic<Outer.Nested>) {}
@@ -0,0 +1,9 @@
// "Make Nested public" "true"
class Outer {
class Nested
}
class Generic<T>
internal fun foo(arg: Generic<Outer.Nested>) {}