missed testdata

This commit is contained in:
Anna.Kozlova
2016-11-28 15:33:35 +01:00
parent 6c9fe553e9
commit d3794bcbba

View File

@@ -0,0 +1,24 @@
package foo;
import foo.A.OtherClass;
import foo.A.Person;
import foo.B.BasicPerson;
class Client {
public void method(OtherClass otherClass) {
Person person = null;
BasicPerson person2 = null;
}
}
class A {
public interface Person {}
public static class BasicPerson implements Person {}
public static class OtherClass {}
}
class B {
public interface Person {}
public static class BasicPerson implements Person {}
public static class OtherClass {}
}