]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/inexact-local.qc
sanitize: shift 1u (unsigned) for flag bits
[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 }