]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/noref.qc
Implemented __FILE__, __LINE__, __RANDOM__, __RANDOM_LAST__, __COUNTER__ and __COUNTE...
[xonotic/gmqcc.git] / tests / noref.qc
1 #pragma noref 1
2 float unused_global_1;
3 #pragma noref 0
4 noref float unused_global_2;
5
6 void() main = {
7 };