pr172.java: Correct classname to match file name.

2000-03-15  Bryce McKinlay  <bryce@albatross.co.nz>

        * libjava.compile/pr172.java: Correct classname to match file name.
        * libjava.compile/pr174.java: ditto. Remove superfluous main()
        method.

From-SVN: r32552
This commit is contained in:
Bryce McKinlay 2000-03-15 03:14:24 +00:00 committed by Bryce McKinlay
parent 87ee36a8d9
commit 37ce3e058d
3 changed files with 9 additions and 8 deletions

View file

@ -1,3 +1,9 @@
2000-03-15 Bryce McKinlay <bryce@albatross.co.nz>
* libjava.compile/pr172.java: Correct classname to match file name.
* libjava.compile/pr174.java: ditto. Remove superfluous main()
method.
2000-03-14 Tom Tromey <tromey@cygnus.com> 2000-03-14 Tom Tromey <tromey@cygnus.com>
* libjava.compile/PR140.java: New file, for PR gcj/140. * libjava.compile/PR140.java: New file, for PR gcj/140.

View file

@ -1,6 +1,6 @@
// jc1 (2.96 20000313) says "`A_Inner' not found" // jc1 (2.96 20000313) says "`A_Inner' not found"
public class InnerConstructor public class pr172
{ {
class A_Inner class A_Inner
{ {

View file

@ -2,14 +2,9 @@ class A
{ {
} }
public class Scope3 public class pr174
{ {
public static void main(String args[]) public pr174()
{
new Scope3();
}
public Scope3()
{ {
A a = new A(); A a = new A();
} }