Java: Add a testcase where both a neutral summary and summary is being generated.

This commit is contained in:
Michael Nebel
2024-01-11 11:26:02 +01:00
parent c7045fbb99
commit 03d4025b99
3 changed files with 22 additions and 0 deletions

View File

@@ -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;
}
}
}