external annotations tests moved to community

This commit is contained in:
Dmitry Jemerov
2011-12-16 17:55:37 +01:00
parent 71c94b5d64
commit 02371fdac5
15 changed files with 396 additions and 0 deletions
@@ -0,0 +1,11 @@
package p;
import org.jetbrains.annotations.NotNull;
class Test {
@NotNull
String g<caret>et() {
return null;
}
}