blob: 9fdd7c6e763027f99c0c05d5143f0efa5660b744 [file] [log] [blame]
/**
* Created with IntelliJ IDEA.
* User: db
* Date: 20.02.12
* Time: 13:19
* To change this template use File | Settings | File Templates.
*/
public class Main {
static void doMe (final Puper x) {
System.out.println("Puper!");
}
static void doMe (final Super x){
System.out.println("Super!");
}
public static void main (String[] args){
doMe(new Victim.SubVictim());
}
}