JVM IR: Fix visibility of protected/private functions with reified types
This commit is contained in:
committed by
Alexander Udalov
parent
dad10e94aa
commit
98a9e142e8
@@ -0,0 +1,8 @@
|
||||
internal inline fun <reified T> f() {}
|
||||
private inline fun <reified T> g() {}
|
||||
|
||||
class Foo {
|
||||
internal inline fun <reified T> f() {}
|
||||
protected inline fun <reified T> g() {}
|
||||
private inline fun <reified T> h() {}
|
||||
}
|
||||
Reference in New Issue
Block a user