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