Rename: Use OverloadChecker for redeclaration conflict analysis
#KT-19561 Fixed #KT-22812 Fixed #KT-13907 Fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class A
|
||||
|
||||
fun A.b() {}
|
||||
|
||||
fun <caret>c() {}
|
||||
@@ -0,0 +1,5 @@
|
||||
class A
|
||||
|
||||
fun A.b() {}
|
||||
|
||||
fun b() {}
|
||||
@@ -0,0 +1,5 @@
|
||||
class Foo
|
||||
class Bar
|
||||
|
||||
fun Foo.example() = "test"
|
||||
fun Bar.<caret>other() = "test"
|
||||
@@ -0,0 +1,5 @@
|
||||
class Foo
|
||||
class Bar
|
||||
|
||||
fun Foo.example() = "test"
|
||||
fun Bar.example() = "test"
|
||||
Reference in New Issue
Block a user