mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
53 lines
2.2 KiB
Java
53 lines
2.2 KiB
Java
/*
|
|
* Copyright 2000-2012 JetBrains s.r.o.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
// string literal
|
|
public class a {
|
|
char c1 = <error descr="Empty character literal">''</error>;
|
|
char c2 = <error descr="Illegal escape character in character literal">'\dd'</error>;
|
|
char c4 = <error descr="Too many characters in character literal">'xxx'</error>;
|
|
char c5 = <error descr="Too many characters in character literal">'\78'</error>;
|
|
char c6 = <error descr="Too many characters in character literal">'\78'</error>;
|
|
|
|
char[] cA = new char[] { 'd','\b','\f','\n','\r'
|
|
,'\t','"','\\',' ','\u1234','\uFFFF'
|
|
, '\7', '\77', '\345', '\0', <error descr="Unclosed character literal">'x</error>
|
|
};
|
|
|
|
String s1 = <error descr="Illegal escape character in string literal">"\xd"</error>;
|
|
String s11= <error descr="Illegal escape character in string literal">"\udX"</error>;
|
|
String s12= <error descr="Illegal escape character in string literal">"c:\TEMP\test.jar"</error>;
|
|
String s3 = "";
|
|
String s4 = "\u0000";
|
|
|
|
String s5 = <error descr="Illegal escape character in string literal">"\u000d"</error>;
|
|
String s6 = <error descr="Illegal escape character in string literal">"\u000a"</error>;
|
|
char c7 = <error descr="Illegal escape character in character literal">'\u000d'</error>;
|
|
char c8 = <error descr="Illegal escape character in character literal">'\u000a'</error>;
|
|
|
|
String perverts = "\uuuuuuuuuuuu1234";
|
|
char perv2 = '\uu3264';
|
|
|
|
void foo(String a) {
|
|
foo(<error descr="Illegal line end in string literal">"aaa</error>
|
|
);
|
|
}
|
|
|
|
String[] s = {
|
|
<error descr="Illegal line end in string literal">"unclosed</error>
|
|
};
|
|
}
|