mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 01:56:06 +00:00
13 lines
137 B
C++
13 lines
137 B
C++
![]() |
// RUN: %clang_cc1 -fopenmp -fsyntax-only %s
|
||
|
|
||
|
// expected-no-diagnostics
|
||
|
struct S {
|
||
|
int i;
|
||
|
};
|
||
|
|
||
|
auto [a] = S{1};
|
||
|
|
||
|
void foo() {
|
||
|
a;
|
||
|
}
|