* libjava.compile/PR238.java: New file. For PR gcj/238.

From-SVN: r34116
This commit is contained in:
Tom Tromey 2000-05-23 22:38:07 +00:00 committed by Tom Tromey
parent 665bfbb0b4
commit a84b5d6436
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,9 @@
public class PR238
{
void foo(A a)
{
a.toString();
}
class A {}
}