Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / testsuite / libjava.lang / err14.java
bloba8ee40c2016269be49ed363356d00c4557acbdac
1 /* Check for incorrectly aligned byte args. */
3 public class err14
5 protected final String getClearToolCommand(Object a, Object b,
6 Object c, Object d,
7 int e, int f, boolean x)
9 return x ? "hi" : "byte";
13 public static void main(String[] args)
15 System.out.println(new err14().getClearToolCommand(null, null,
16 null, null, 0, 0, false));
17 System.out.println(new err14().getClearToolCommand(null, null,
18 null, null, 0, 0, true));