Change visibility on exposure now reports all possible visibilities
This commit is contained in:
committed by
Mikhail Glukhikh
parent
a2501463a8
commit
e6a7cd97ff
@@ -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>) {}
|
||||
Reference in New Issue
Block a user