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