mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
8 lines
133 B
C++
8 lines
133 B
C++
const float a = 1.0 / 3.0;
|
|
const float b = 0.33333333333;
|
|
|
|
void main() {
|
|
if (a == b) {
|
|
// Should trigger warning
|
|
}
|
|
}
|