]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/inexact.qc
Fix for loops
[xonotic/gmqcc.git] / tests / inexact.qc
1 const float a = 1.0 / 3.0;
2 const float b = 0.33333333333;
3
4 void main() {
5     if (a == b) {
6         // Should trigger warning
7     }
8 }