Skip to content
Snippets Groups Projects
Commit a5646c18 authored by aph's avatar aph
Browse files

2004-08-10 Andrew Haley <aph@redhat.com>

	* testsuite/libjava.lang/err14.java: New file.
	* testsuite/libjava.lang/err14.out: New file.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85752 138bc75d-0d04-0410-961f-82ee72b054a4
parent 357fae51
No related branches found
No related tags found
No related merge requests found
/* 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));
}
}
byte
hi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment