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,8 @@
package suppressed;
class ExistingExternalName {
String foo(){
String str = "";
s<caret>tr = str;
return str;
}
}
@@ -0,0 +1,7 @@
package suppressed;
class NewSuppress {
void barr() {
String str = "";
st<caret>r = str;
}
}
@@ -0,0 +1,7 @@
package suppressed;
class SecondSuppression {
void second() {
String str = "";
st<caret>r = str;
}
}