aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaOpenMP/gh104810.cpp
blob: 92640893197760489a0576972287c935cc40a2cd (plain)
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;
}