moving tests from codeInsight-tests to community

This commit is contained in:
Dmitry Jemerov
2015-02-12 12:35:07 +01:00
parent 9dee6e8ff3
commit c25243f74d
78 changed files with 1449 additions and 0 deletions
@@ -0,0 +1,11 @@
class SomeClass {
public static final Object OBJECT_OVERRIDDEN = new Object() {
public String <caret>toString() {
return "";
}
};
public String get() {
return OBJECT_OVERRIDDEN.toString();
}
}