blob: 4817a5b8db02f05a5deb5db71e9482ad629a3351 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <stdio.h>
typedef double long c3_t;
typedef double long c2_t;
typedef struct {
int x;
int y;
} cs_t;
cs_t derp() {
return (cs_t){2,3};
}
int main(int argc,char *argv[]) {
cs_t cs=derp();
printf("%d,%d\n",cs.x,cs.y);
switch(1) {
case 1:
printf("first\n");
break;
default:
printf("third.\n");
break;
}
return 0;
}
|