IDEA-188880 Make interface method 'default' fix: suppress for methods overriding Object methods

This commit is contained in:
Tagir Valeev
2018-03-27 11:44:59 +07:00
parent 6c125dfd9e
commit 7c193ef32c
2 changed files with 9 additions and 1 deletions
@@ -0,0 +1,4 @@
// "Make 'toString' default" "false"
interface I {
String toS<caret>tring() {return "foo";}
}