diff --git a/Tests/A5/J1_01_compID_param.java b/Tests/A5/J1_01_compID_param.java
new file mode 100644
index 0000000000000000000000000000000000000000..934115a14d01412fcf0d59ff98791b4130b212dc
--- /dev/null
+++ b/Tests/A5/J1_01_compID_param.java
@@ -0,0 +1,19 @@
+public class J1_01_compID_param {
+
+    public J1_01_compID_param() {
+      j = 5;
+    }
+    public int i = 4;
+    public int j = 1;
+    public static int n = 10;
+
+    public int m(J1_01_compID_param p){
+      p.i = p.i + 2;
+      return j + p.i;
+    }
+
+    public static int test() {
+      J1_01_compID_param k = new J1_01_compID_param();
+      return k.i + k.m(k) + J1_01_compID_param.n;
+    }
+}