gmqcc/testsuite/functions-as-parameters/main.qc
2012-11-01 18:24:48 +01:00

13 lines
175 B
C++

void(string, string) print = #1;
string() getter = {
return "correct";
};
void(string() f) printer = {
print(f(), "\n");
};
void() main = {
printer(getter);
};