You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffi-clang/spec/ffi/clang/fixtures/list.c

12 lines
157 B
C

struct List {
int Data;
struct List *Next;
};
int sum(union List *L) { return 1; };
main(int argc, char const *argv)
{
if (0 == 1);
return 0;
}