Override Members: Allow overriding virtual synthetic members (e.g. equals(), hashCode(), toString(), etc.) in data classes

#KT-15563 Fixed
This commit is contained in:
Alexey Sedunov
2017-01-10 20:26:56 +03:00
parent 862966fd33
commit 8c882f0d27
5 changed files with 15 additions and 3 deletions
@@ -0,0 +1,3 @@
data class Foo(val name: String) {
<caret>
}