c10de35ca2
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 5m25s
10 lines
155 B
Java
10 lines
155 B
Java
public class Bar{
|
|
|
|
void visit(Object o){
|
|
System.out.println("Object");
|
|
}
|
|
|
|
void visit(Bla f){
|
|
System.out.println("Foo");
|
|
}
|
|
} |