File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
java/ql/test/utils/modelgenerator/dataflow/p Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -88,4 +88,29 @@ public String id(String s) {
88
88
return s ;
89
89
}
90
90
}
91
+
92
+ public interface INeutral {
93
+ String id (String s );
94
+ }
95
+
96
+ public class F implements INeutral {
97
+ // SPURIOUS-neutral=p;Inheritance$INeutral;id;(String);summary;df-generated
98
+ public String id (String s ) {
99
+ return "" ;
100
+ }
101
+ }
102
+
103
+ public class G implements INeutral {
104
+ // SPURIOUS-neutral=p;Inheritance$INeutral;id;(String);summary;df-generated
105
+ public String id (String s ) {
106
+ return "" ;
107
+ }
108
+ }
109
+
110
+ private class H implements INeutral {
111
+ // SPURIOUS-neutral=p;Inheritance$INeutral;id;(String);summary;df-generated
112
+ public String id (String s ) {
113
+ return "" ;
114
+ }
115
+ }
91
116
}
You can’t perform that action at this time.
0 commit comments