math: improve how get_absolute_min/max() work
[smatch.git] / validation / typedef_shadow.c
blobc72cec72d1612ef586a835cd65145e639889575a
1 typedef int T;
2 static void f(int T)
4 static T a;
6 /*
7 * check-name: typedef shadowing
8 * check-error-start:
9 typedef_shadow.c:4:18: error: Expected ; at end of declaration
10 typedef_shadow.c:4:18: error: got a
11 * check-error-end: