mirror of
https://github.com/github/codeql.git
synced 2026-05-04 21:25:44 +02:00
Java: Add a testcase where both a neutral summary and summary is being generated.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package p;
|
||||
|
||||
class MultipleImpl2 {
|
||||
|
||||
public interface IInterface {
|
||||
Object m(Object value);
|
||||
}
|
||||
|
||||
public class Impl1 implements IInterface {
|
||||
public Object m(Object value) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public class Impl2 implements IInterface {
|
||||
public Object m(Object value) {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user