diff options
Diffstat (limited to 'test/initializer-replace-local.c')
-rw-r--r-- | test/initializer-replace-local.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/initializer-replace-local.c b/test/initializer-replace-local.c new file mode 100644 index 0000000..8b93ef2 --- /dev/null +++ b/test/initializer-replace-local.c @@ -0,0 +1,10 @@ +void f(void) { + struct { + char s[6]; + } x = { + .s[0] = 'x', + .s[4] = 'y', + .s = "hello", + .s[1] = 'a', + }; +} |