summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/decomp-lambda1.C
blob: 6161e4da23eac12e89810566894fcba9fd0f2f10 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/84420
// { dg-do compile { target c++17 } }

int main(){
    int a[1]{};
    [&a]{
        auto [v] = a;
        (void)v;
    }();
}