mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
allow to implement and override default methods in java 8 (IDEA-103180) [roma]
(cherry picked from commit 6fc2a889a092365431b92d7f03b8d2057a82d8be)
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
interface A<T> {
|
||||
default void m(T t) { }
|
||||
}
|
||||
|
||||
class MyClass<T> implements A<T> {
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user