]> git.xonotic.org Git - xonotic/gmqcc.git/blob - data/proto.qc
ir_values which are members of a vector should know that, so that liferange calc...
[xonotic/gmqcc.git] / data / proto.qc
1 void(string) print  = #1;
2
3 void()       correct;
4 void(string) incorrect;
5
6 void() correct = {
7     print("Hello\n");
8 }
9
10 void() incorrect = {
11     printf("The compiler should error about this function having a wrong type\n");
12 }