¿Cuál es la salida del siguiente código?
public class Test {
public void test(int x, float y) {
System.out.println("test(int, float)");
}
public void test(float x, int y) {
System.out.println("test(float, int)");
}
public static void main(String[] args) {
Test obj = new Test();
obj.test(10, 5.0f);
}
}