expressions: make assign_expression() take an op argument
[smatch.git] / validation / inline_compound_literals.c
blobfc223ff53c3d7c51dfa2312857d2f729daa27ecc
1 struct foo {
2 int x;
3 };
5 static inline void baz(void)
7 (struct foo) { .x = 0 };
10 static void barf(void)
12 baz();
15 static void foo(void)
17 baz();
21 * check-name: inline compound literals