251N/A/*
383N/A * @test /nodynamiccopyright/
251N/A * @bug 6182950
251N/A * @summary methods clash algorithm should not depend on return type
251N/A * @author mcimadamore
251N/A * @compile/fail/ref=T6182950a.out -XDrawDiagnostics T6182950a.java
251N/A */
251N/Aimport java.util.List;
251N/A
251N/Aclass T6182950a {
251N/A int m(List<String> l) {return 0;}
251N/A double m(List<Integer> l) {return 0;}
251N/A}