Some update.

This commit is contained in:
ykiko
2024-10-27 13:31:26 +08:00
parent 10071e3b0a
commit e1afd40663
14 changed files with 333 additions and 84 deletions

View File

@@ -1,6 +1,12 @@
#include "test1.h"
#include "test2.h"
struct X {
int x;
};
void foo(int x, int y);
int main() {
X xxx;
xxx.x = 2;
foo()
return 0;
}