* libjava.compile/pr174.java: New file, for PR gcj/174.

From-SVN: r32537
This commit is contained in:
Tom Tromey 2000-03-14 18:35:02 +00:00 committed by Tom Tromey
parent 8c5d513f17
commit 4bdf01f210
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,20 @@
class A
{
}
public class Scope3
{
public static void main(String args[])
{
new Scope3();
}
public Scope3()
{
A a = new A();
}
class A
{
}
}