Raise an error if the given pg-map is incomplete.

Even <init> to <init> mappings should be present in the pg-map,
which have been missed at the test pg-map.

Since <clinit> may be omitted, it is handled exceptionally:
  unmapped <clinit> is not regarded as incomplete pg-map.

Bug: 71621001
Change-Id: I93f76c66a40bef11f09da95566c1a66a6d5ef6da
diff --git a/src/test/examples/applymapping044/Main.java b/src/test/examples/applymapping044/Main.java
index 9d5f577..a0389e8 100644
--- a/src/test/examples/applymapping044/Main.java
+++ b/src/test/examples/applymapping044/Main.java
@@ -14,7 +14,9 @@
     A a = new A();
     B b = new B();
     b.f(a);
-    AsubB subB = new AsubB();
+    AsubB aSubB = new AsubB(3);
+    aSubB.f(a);
+    SubB subB = new SubB(3);
     subB.f(a);
   }
 }