err14.java 664 Bytes
Newer Older
Andrew Haley committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* Check for incorrectly aligned byte args.  */

public class err14
{
  protected final String getClearToolCommand(Object a, Object b,
                                             Object c, Object d, 
                                             int e, int f, boolean x) 
  {
    return x ? "hi" : "byte";
  }
  
  
  public static void main(String[] args)
  {
    System.out.println(new err14().getClearToolCommand(null, null,
                                                       null, null, 0, 0, false));
    System.out.println(new err14().getClearToolCommand(null, null,
                                                       null, null, 0, 0, true));
  }
}