blob: b0900438c72de456c0c545dfc8b025a841b8cbb5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
public class Issue344Test2 extends Issue344Base {
protected String getText() {
// test 2 - unicode hangs program with a large font & long string
return "\u201Cabcdefghijklmnopqrstuvwxyz\u201D";
}
public static void main(String[] args) {
new Issue344Test2().run(args);
}
}
|