disable create instance field inside interface (IDEA-127211)

This commit is contained in:
Anna Kozlova
2014-07-14 20:58:24 +02:00
parent 65d11dd095
commit 590ed4cc23
3 changed files with 24 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Create Field 'myFoo'" "false"
interface Test {
default String get() {
return my<caret>Foo;
}
}