re GNATS gcj/310 (illegal type "long" accepted for "switch" expression)

From PR gcj/310:
	* libjava.compile/PR310.java: New file.
	* libjava.compile/PR310.xfail: New file.

From-SVN: r35596
This commit is contained in:
Tom Tromey 2000-08-10 01:09:12 +00:00 committed by Tom Tromey
parent 253b6b828a
commit 60798ef254
3 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2000-08-09 Tom Tromey <tromey@cygnus.com>
From PR gcj/310:
* libjava.compile/PR310.java: New file.
* libjava.compile/PR310.xfail: New file.
2000-07-30 Anthony Green <green@redhat.com>
* libjava.compile/PR295.java: New file.

View File

@ -0,0 +1,9 @@
public class PR310
{
void m (long l)
{
switch (l)
{
}
}
}

View File

@ -0,0 +1 @@
shouldfail