Commit 14dfcac2 authored by bryce's avatar bryce
Browse files

2000-05-08 Bryce McKinlay <bryce@albatross.co.nz>

	Test for PR gcj/224:
	* libjava.compile/PR224.java: New file.
	* libjava.compile/PR224.xfail: New file.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33762 138bc75d-0d04-0410-961f-82ee72b054a4
parent 6bc2f30f
2000-05-08 Bryce McKinlay <bryce@albatross.co.nz>
Test for PR gcj/224:
* libjava.compile/PR224.java: New file.
* libjava.compile/PR224.xfail: New file.
2000-04-28 Bryce McKinlay <bryce@albatross.co.nz>
Test for PR gcj/218:
......
// File PrivateInnerInterface.java
public class PR224 {
private interface Inter {}
}
class PrivateInnerInterface_Test extends PR224 {
void foo() {
// Implement the interface with an innerclass
Inter i = new Inter() { } ;
}
}
// This should fail to compile because Inter is private in the superclass
shouldfail
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment