IDEA-115790 default methods cannot override Object methods

This commit is contained in:
anna
2013-11-04 15:10:41 +01:00
parent 3f2a4dca13
commit 9ae4eced85
3 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
interface A {
default String <error descr="Default method toString overrides a member of java.lang.Object">toString</error>() {
return "";
}
}