2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.compile / T20020529.java
blob19f1ea862ac17ff00150c2fa7892195345a71cd5
1 public class T20020529
3 public void checkXMLLangAttributeValue(String lang)
5 int offset = -1;
6 if (lang.length() >= 2) {
7 char ch0 = lang.charAt(0);
9 if (offset > 0) {
10 char ch = lang.charAt(offset++);
11 if (ch != '-') {
12 offset = -1;
13 } else {
14 while (true)
16 if (ch == '-')
17 ch = lang.charAt(offset++);
18 ch = lang.charAt(offset++);