summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/structured_bindings.cc
blob: 1e23246f9a12c1b7555664c221177823fb3bd874 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_analyze_cc1 -std=c++17 -analyzer-checker=core -verify %s

// expected-no-diagnostics
struct s { int a; };
int foo() {
    auto[a] = s{1}; // FIXME: proper modelling
    if (a) {
    }
}

OpenPOWER on IntegriCloud