blob: f4fa6ab1f876a32934d760e5fe328f5e7f6d5bbb [file] [log] [blame]
/**
* Created by IntelliJ IDEA.
* User: db
* Date: Nov 15, 2004
* Time: 5:40:02 PM
* To change this template use File | Settings | File Templates.
*/
class A {}
class B {}
public class Test {
B getA() {
return new A ();
}
int foo() {
B a = getA ();
if (a != null){
return 0;
}
return 1;
}
}