Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/nonAsciiCharacters/MixedLanguagesJavaInAnyWord.java
Bas Leijdekkers 37cfd4069d fix "Non-ASCII characters" inspection warning grammar
GitOrigin-RevId: d86958f0b6ee596d216e7978e8fb5684a0b58ed4
2022-06-08 11:14:27 +00:00

13 lines
618 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
class X {
int Ж = 0;
class Inner<warning descr="Non-ASCII symbols in ASCII word">П</warning> {}
// comment<warning descr="Non-ASCII symbols in ASCII word">жп</warning> 234
String sameLang = "12л3орыва0";
String mixed = "12<warning descr="Non-ASCII symbols in ASCII word">че</warning>to3";
void жжж() {
жжж();
String core = "<warning descr="Non-ASCII symbols in ASCII word">С</warning>ore";
System.out.println("<warning descr="Non-ASCII symbols in ASCII word">С</warning>ore");
String u = "\5\0\51\2\3\0\136\2\21\0\33\2\65\0\20\2\u0200\0\u19b6\2"; // ignore slash u
}
}