xref: /illumos-gate/usr/src/tools/smatch/src/validation/bitfield-kr.c (revision c85f09cc92abd00c84e58ec9f0f5d942906cb713)

foo(b)1 static int foo(b)
2 	int b: 4;
3 {
4       return 0;
5 }
6 
7 /*
8  * check-name: bitfield in K&R
9  *
10  * check-known-to-fail
11  * check-error-start
12 bitfield-kr.c:2:9: error: bitfield in K&R declaration of 'foo'
13  * check-error-end
14  */
15