aboutsummaryrefslogtreecommitdiffstats
path: root/test/Issue344Test4.java
blob: 1e077d2fd6dc58db533bec98aea70e40ee43310b (plain)
1
2
3
4
5
6
7
8
9
10
public class Issue344Test4 extends Issue344Base {
    protected String getText() {
        // test 4 - unicode letter as second-to-last is rendered incorrectly
        return "\u201CGreetings\u201D!";
    }

    public static void main(String[] args) {
        new Issue344Test4().run(args);
    }
}