fix attribute name error

This commit is contained in:
lyhellcat
2021-09-08 10:05:54 +08:00
parent d943879076
commit f4dd815df2

View File

@@ -82,7 +82,7 @@ printf("%d\n", x.a); // 12
printf("%d\n", *foo_int_p); // 12
x.b = 3.141592;
printf("%f\n", x.g); // 3.141592
printf("%f\n", x.b); // 3.141592
printf("%f\n", *foo_float_p); // 3.141592
```