* libjava.compile/pr172.java: New file, for PR gcj/172.

From-SVN: r32539
This commit is contained in:
Tom Tromey 2000-03-14 18:37:18 +00:00 committed by Tom Tromey
parent eab5c70a03
commit 199504d153
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,9 @@
// jc1 (2.96 20000313) says "`A_Inner' not found"
public class InnerConstructor
{
class A_Inner
{
A_Inner (A_Inner i) {}
}
}