diff options
Diffstat (limited to 'test/Sema/missing-field-initializers.c')
-rw-r--r-- | test/Sema/missing-field-initializers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/missing-field-initializers.c b/test/Sema/missing-field-initializers.c index 6aa48ba..90e0e2a 100644 --- a/test/Sema/missing-field-initializers.c +++ b/test/Sema/missing-field-initializers.c @@ -46,7 +46,7 @@ struct Three data[] = { { { .two = { 1.0f, 2.0f } } } // expected-warning {{missing field 'e' initializer}} }; -struct { int:5; int a; int:5; int b; int:5 } noNamedImplicit[] = { +struct { int:5; int a; int:5; int b; int:5; } noNamedImplicit[] = { { 1, 2 }, { 1 } // expected-warning {{missing field 'b' initializer}} }; |