llvm-project/clang/test/Analysis/sizeofpack.cpp
Artem Dergachev b0914e7276 [analyzer] Specify the C++ standard in more tests.
Makes life easier for downstream developers with different default standard.

llvm-svn: 375308
2019-10-19 00:08:17 +00:00

16 lines
408 B
C++

// RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection \
// RUN: -std=c++14 -verify %s
typedef __typeof(sizeof(int)) size_t;
void clang_analyzer_eval(bool);
template <int... N> size_t foo() {
return sizeof...(N);
}
void bar() {
clang_analyzer_eval(foo<>() == 0); // expected-warning{{TRUE}}
clang_analyzer_eval(foo<1, 2, 3>() == 3); // expected-warning{{TRUE}}
}