Create from Usage: Fix rendering of receiver type reference
#KT-9559 Fixed
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
// "Create extension property 'foo'" "true"
|
||||
// ERROR: Unresolved reference: foo
|
||||
|
||||
import package1.A
|
||||
|
||||
val package2.A.foo: Any
|
||||
|
||||
class X {
|
||||
init {
|
||||
val y = package2.A()
|
||||
val foo = y.foo
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package package1
|
||||
|
||||
class A
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package package2
|
||||
|
||||
class A
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Create extension property 'foo'" "true"
|
||||
// ERROR: Unresolved reference: foo
|
||||
|
||||
import package1.A
|
||||
|
||||
class X {
|
||||
init {
|
||||
val y = package2.A()
|
||||
val foo = y.<caret>foo
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user