blob: 5094b2a2d60e1327f7e4b10ae205a1bcd33bc039 [file] [log] [blame]
Jean-Baptiste Querub56ea2a2013-01-08 11:11:20 -08001<error descr="Method with signature foo(String, int) is already defined in the class 'MethodDuplicates'">def foo(String s = "a", int i, double y = 4)</error> {
2
3}
4
5def foo(int i, double y) {}
6
7<error descr="Method with signature foo(String, int) is already defined in the class 'MethodDuplicates'">def foo(String s, int i)</error> {}
8
9def foo(String s, double y){}