IDEA-91679 (correct conversion of extension methods)

This commit is contained in:
Roman Shevchenko
2012-09-18 19:34:21 +02:00
parent a252f9352a
commit b12e3b2b7e
5 changed files with 43 additions and 18 deletions
@@ -0,0 +1,8 @@
interface Base {
}
interface I2 extends Base {
void foo<caret>() default {
System.out.println("Hi there.");
}
}