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