aboutsummaryrefslogtreecommitdiff
path: root/tests/struct_cont/struct_cont.ek
blob: 6e017631dbce6ec77db5ffad02e871baec4011af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
typedef i27 {
	/* empty */
}

continue i27 {
	do_something() {}
}

main()
{
	29.do_something();
}