JavaPatternMatching/bin/mycompiler/test/javaConcepts/overloading/OverloadingDifferentNumberOfParameters.jav

6 lines
158 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class OverloadingDifferentNumberOfParameters{
void foo(){}
void foo(Integer a){}
void foo(Integer a, Double b){}
void foo(Integer a, Double b, Long c){}
}