1 2 3 4 5 6 7 8 9 10 11 12
// RUN: %clang_cc1 -fopenmp -fsyntax-only %s // expected-no-diagnostics struct S { int i; }; auto [a] = S{1}; void foo() { a; }