brintos

brintos / llvm-project-archived public Read only

0
0
Text · 137 B · 9264089 Raw
13 lines · cpp
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