DCD/tests/tc_ufcs_calltip_in_func/file.d

8 lines
166 B
D

void showSomething(int x, string message, bool ok){}
void showSomething(int x, string message, bool ok, float percentage){}
void main(){
int x;
x.showSomething(
}