Add struct tests.
This commit is contained in:
parent
8e45ea5eef
commit
ac8c0ed9c7
|
@ -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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user