diff options
Diffstat (limited to 'libjava/testsuite/libjava.compile/support/PR207_A.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/support/PR207_A.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/support/PR207_A.java b/libjava/testsuite/libjava.compile/support/PR207_A.java new file mode 100644 index 00000000000..1d465f5222e --- /dev/null +++ b/libjava/testsuite/libjava.compile/support/PR207_A.java @@ -0,0 +1,13 @@ +package support; + +public final class PR207_A { + static + { + String s = System.getProperty ("soylent"); + } + + public static String hello () + { + return "green"; + } +} |