blob: 782029a33b45fba5a495189f6b2ff8fd9184f443 [file] [log] [blame]
@SuppressWarnings("SpellCheckingInspection")
class BaddName1 {
int baddField;
void baddMethod() { }
}
@SuppressWarnings("ALL")
class BaddName2 {
int baddField;
void baddMethod() { }
}
class GoodName {
@SuppressWarnings("SpellCheckingInspection") int baddField;
@SuppressWarnings("SpellCheckingInspection") void baddMethod() { }
}
@SuppressWarnings("asdfasd")
class Foo {
{
//noinspection asdfasdf
int <TYPO descr="Typo: In word 'adsaf'">adsaf</TYPO> = 1;
}
}