1 /* PR libstdc++/88101 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
4
5 void
6 foo (int n)
7 {
8 struct S { char a; int b[n]; long long c; } s;
9 __builtin_clear_padding (&s); /* { dg-message "unimplemented: __builtin_clear_padding not supported for variable length aggregates" } */
10 }