Commit 2b0807d3 by Anthony Green

New tests.

From-SVN: r33202
parent 256309e4
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";
}
}
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