]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/inexact.qc
11dc2c62521d0ce9e87ffb8f898f214f647a9edd
[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 }