]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/inexact-local.qc
move more parser code to c++, fix crashes with gcc
[xonotic/gmqcc.git] / tests / inexact-local.qc
1 void main() {
2     const float a = 1.0 / 3.0;
3     const float b = 0.33333333333;
4     if (a == b) {
5         // Should trigger warning
6     }
7 }