]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/order.qc
fix std::string constructed from nullptr
[xonotic/gmqcc.git] / tests / order.qc
1 float go(string x) {
2     print(x, "\n");
3     return 1;
4 }
5
6 void main() {
7     float x = go("A") + go("B");
8 }