Added fake override search in unused symbol inspection #KT-13288 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-08-11 16:30:02 +03:00
parent 8de68e3e87
commit b3b83e344b
21 changed files with 255 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
interface Inter {
String something();
}
class Test extends Abstract implements Inter {
String something() {
return "123";
}
}