Code Insight: Allow properties with custom setters to be used in generated equals/hashCode/toString
#KT-11908 Fixed
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class Test {
|
||||
var serial: String = ""
|
||||
set(value) {
|
||||
field = value.toUpperCase()
|
||||
}
|
||||
var name: String = ""
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user