New tests.

From-SVN: r33202
This commit is contained in:
Anthony Green 2000-04-17 05:26:20 +00:00
parent 256309e4e9
commit 2b0807d3bc
4 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,7 @@
class PR206 {
PR206 (String s)
{
support.PR206_A x;
}
}

View File

@ -0,0 +1,6 @@
class PR207 {
PR207 (String s)
{
System.out.println (s + support.PR207_A.hello());
}
}

View File

@ -0,0 +1,8 @@
package support;
public final class PR206_A {
static
{
String s = System.getProperty ("soylent");
}
}

View File

@ -0,0 +1,13 @@
package support;
public final class PR207_A {
static
{
String s = System.getProperty ("soylent");
}
public static String hello ()
{
return "green";
}
}