Skip to content

Commit 2c6727c

Browse files
committed
Modified Unicode characters to compile with Java 7
1 parent db11e97 commit 2c6727c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/org.emftext.language.java.test/src-input/unicode/UnicodeIdentifiers.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
package unicode;
1717

1818
public class UnicodeIdentifiers {
19-
int a\u0000 = 0;
20-
int b\u202a;
19+
int x\u0000 = 0;
20+
int y\u202a;
2121
int \u0041; // LATIN CAPITAL A
2222
int \u0061; // LATIN SMALL A
2323
int \u0391; // GREEK CAPITAL ALPHA
2424
int \u0480; // CYRILLIC SMALL A
2525
int \u00c1; // LATIN CAPITAL A ACUTE
2626
int \u0041\u0301; // LATIN CAPITAL A, followed by NON-SPACING ACUTE
27-
int c\u001a = 0;
27+
int z\u001a = 0;
2828
}

0 commit comments

Comments
 (0)