summaryrefslogtreecommitdiff
path: root/test/files/run/t10231/A_1.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t10231/A_1.java')
-rw-r--r--test/files/run/t10231/A_1.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/run/t10231/A_1.java b/test/files/run/t10231/A_1.java
new file mode 100644
index 0000000000..5cc2ed3606
--- /dev/null
+++ b/test/files/run/t10231/A_1.java
@@ -0,0 +1,11 @@
+/*
+ * javac: -parameters
+ */
+public class A_1 {
+ public class Inner {
+ public int x;
+ public Inner(int i) {
+ x = i;
+ }
+ }
+}