allow to implement and override default methods in java 8 (IDEA-103180) [roma]

(cherry picked from commit 6fc2a889a092365431b92d7f03b8d2057a82d8be)
This commit is contained in:
anna
2013-03-15 22:04:47 +01:00
parent 1b9cb2dce0
commit 5b83d0d343
4 changed files with 65 additions and 4 deletions
@@ -0,0 +1,7 @@
interface A<T> {
default void m(T t) { }
}
class MyClass<T> implements A<T> {
<caret>
}