blob: 1e23246f9a12c1b7555664c221177823fb3bd874 [file] [log] [blame]
George Karpenkov06596232018-03-07 22:20:35 +00001// RUN: %clang_analyze_cc1 -std=c++17 -analyzer-checker=core -verify %s
2
3// expected-no-diagnostics
4struct s { int a; };
5int foo() {
6 auto[a] = s{1}; // FIXME: proper modelling
7 if (a) {
8 }
9}
10