commit 1f6bfcd9114a69b495191dbc3d96c27e1468a8f9 parent dfbe125c3b0d001a9f0d671c6adfdb41e488e8cf Author: Roberto E. Vargas Caballero <k0ga@shike2.net> Date: Sun, 11 May 2025 20:31:23 +0200 test/cc: Add 0231-init.c Diffstat:
A | tests/cc/execute/0231-init.c | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/tests/cc/execute/0231-init.c b/tests/cc/execute/0231-init.c @@ -0,0 +1,11 @@ +struct a { + int a; +}; + +int main() +{ + struct a a; + struct a aa = a; + + return 0; +}