Tests for some more cases of JVM signature clashes
This commit is contained in:
@@ -19,3 +19,16 @@ trait Tr {
|
||||
class SubTr : Tr {
|
||||
val tr = 1
|
||||
}
|
||||
|
||||
// Clashing synthetic accessors are only reported in compiler, IDE doesn't see them
|
||||
class C {
|
||||
private fun f() {}
|
||||
fun `f$b$0`(c: C) {}
|
||||
|
||||
class Nested {
|
||||
|
||||
fun test() {
|
||||
C().f()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user