1/*
2 * @test /nodynamiccopyright/
3 * @bug 4767128 5048557 5048773 8078559
4 * @summary diagnose encoding errors in Java source files
5 * @author gafter
6 *
7 * @compile/fail/ref=Unmappable.out -XDrawDiagnostics  -encoding ascii Unmappable.java
8 */
9
10// example from 4766897
11public class Unmappable {
12    String s = "z�hler";
13}
14