Skip to content
Snippets Groups Projects
Commit 89194e46 authored by green's avatar green
Browse files

New tests.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33202 138bc75d-0d04-0410-961f-82ee72b054a4
parent d16b7f09
No related branches found
No related tags found
No related merge requests found
class PR206 {
PR206 (String s)
{
support.PR206_A x;
}
}
class PR207 {
PR207 (String s)
{
System.out.println (s + support.PR207_A.hello());
}
}
package support;
public final class PR206_A {
static
{
String s = System.getProperty ("soylent");
}
}
package support;
public final class PR207_A {
static
{
String s = System.getProperty ("soylent");
}
public static String hello ()
{
return "green";
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment