handle label attributes
[smatch.git] / validation / bad-ternary-cond.c
blobd502931f561ae6d7e479524ef48060a7556da7e4
1 // should warn: "warning: Expected : in conditional expression"
2 // and should not segfault
4 static int foo(int a)
6 return a ?? 1 : 0;