[FE] Do not change original semantics in LabelResolver
This commit is contained in:
committed by
TeamCityServer
parent
5d76f979cf
commit
2b30c1eb5d
+27
@@ -0,0 +1,27 @@
|
||||
fun Int.f() {
|
||||
this<!UNRESOLVED_REFERENCE!>@Int<!>
|
||||
}
|
||||
|
||||
var Int.p: Int
|
||||
get() {
|
||||
this<!UNRESOLVED_REFERENCE!>@Int<!>
|
||||
return<!UNRESOLVED_REFERENCE!>@p<!> 42
|
||||
}
|
||||
set(value) {
|
||||
this<!UNRESOLVED_REFERENCE!>@Int<!>
|
||||
}
|
||||
|
||||
class X {
|
||||
var Int.p: Int
|
||||
get() {
|
||||
this<!UNRESOLVED_REFERENCE!>@Int<!>
|
||||
return<!UNRESOLVED_REFERENCE!>@p<!> 42
|
||||
}
|
||||
set(value) {
|
||||
this<!UNRESOLVED_REFERENCE!>@Int<!>
|
||||
}
|
||||
|
||||
fun Int.f() {
|
||||
this<!UNRESOLVED_REFERENCE!>@Int<!>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user