implied: use a time based timeout instead of counting ->nr_children
[smatch.git] / validation / sm_casts7.c
blob674d023affb6266fa2e999aa46ae33f884c2f914
1 #include <stdio.h>
2 #include <string.h>
3 #include "check_debug.h"
5 int a;
6 int x;
8 int main(void)
10 a = (unsigned short)x;
11 __smatch_implied(a);
13 return 0;
18 * check-name: smatch: casts #7
19 * check-command: smatch -I.. sm_casts7.c
21 * check-output-start
22 sm_casts7.c:11 main() implied: a = '0-u16max'
23 * check-output-end