Safe Delete: Delete interface reference from super-type list when applying Safe Delete to Java interface

#KT-11282 Fixed
This commit is contained in:
Alexey Sedunov
2016-04-20 12:47:13 +03:00
parent 613a274c90
commit 6a1387b9b9
18 changed files with 120 additions and 1 deletions
@@ -0,0 +1,11 @@
public interface <caret>I {
}
public interface II {
}
public class J implements I, II {
}
@@ -0,0 +1,7 @@
public interface II {
}
public class J implements II {
}
@@ -0,0 +1,3 @@
class K : I, II {
}
@@ -0,0 +1,7 @@
public interface <caret>I {
}
public class J implements I {
}