diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-27 00:25:13 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-27 00:38:13 -0700 |
commit | 231137aceb65c4b1ca0b54dd599f1f8b8c5c9342 (patch) | |
tree | 4dec75cceb29ea179eaefd2d39cb82f4936b03a9 /test/initializer-string-braces.c | |
parent | bdefdc936a6c2be8f6c814c82ef9b36a432051e4 (diff) |
init: Allow string literal initializers to be in braces
Diffstat (limited to 'test/initializer-string-braces.c')
-rw-r--r-- | test/initializer-string-braces.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/initializer-string-braces.c b/test/initializer-string-braces.c new file mode 100644 index 0000000..e540d5e --- /dev/null +++ b/test/initializer-string-braces.c @@ -0,0 +1 @@ +char s[] = {"abc"}; |