[VISUALIZER] Render original symbols/descriptors in fir/psi
This commit is contained in:
committed by
TeamCityServer
parent
869585870d
commit
e19514f1dc
@@ -4,7 +4,7 @@ abstract class Base<T>(var x: T) {
|
||||
abstract fun replace(newValue: T)
|
||||
}
|
||||
|
||||
class Derived(var x: Int): Base<Int>(x) {
|
||||
class Derived(x: Int): Base<Int>(x) {
|
||||
override fun replace(newValue: Int) {
|
||||
x = newValue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user