forked from JavaTX/JavaCompilerCore
6 lines
158 B
Plaintext
6 lines
158 B
Plaintext
|
class OverloadingDifferentNumberOfParameters{
|
||
|
void foo(){}
|
||
|
void foo(Integer a){}
|
||
|
void foo(Integer a, Double b){}
|
||
|
void foo(Integer a, Double b, Long c){}
|
||
|
}
|