Don't try calling lsl when file is missing.
[splint-patched.git] / test / enumtag.c
blob6e8912073b7d0e3bbfb336423b4c44d4f55b191a
1 typedef struct s_st st;
3 struct s_st {
4 int x;
5 } ;
8 typedef enum e_tag tag;
10 enum e_tag r;
12 enum e_tag {
13 E_X, E_Y, E_Z
14 } ;
16 int f (tag e)
18 if (e == E_X)
20 return 3;
22 else
24 enum e_tag h = E_Z;
26 if (h == e)
28 return 7;
32 return 12;
35 enum e_tag {
36 E_M
37 } ;