Add struct tests.

This commit is contained in:
Curle 2021-07-05 00:07:55 +01:00
parent 8e45ea5eef
commit ac8c0ed9c7

View File

@ -3,4 +3,12 @@ struct a {
int y
};
int main() { return (0); }
int printf(char* fmt);
struct a str;
int main() {
str.y = 55;
printf("%d\n", str.y);
return (0);
}