ebb88e0f02f7616818ccc5235971a861afdd5724
[cdsspec-compiler.git] / test.c
1 #include <stdio.h>
2 #include <stddef.h>
3
4 struct pair {
5         int x, y;
6 };
7
8 int func() {
9         return 3;
10 }
11
12 int main() {
13         int b;
14         b = (int a = func());
15         return 0;
16 }