1 2 3 4 5 6 7 8 9 10 11 12
/* * Rule: FLP32-C * Source: wiki * Status: FAIL - Should trigger FLP32-C violation */ #include <math.h> void func(double x) { double result; result = sqrt(x); }