view clang/test/Analysis/sizeofpack.cpp @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900 (2023-10-14)
parents 1d019706d866
children
line wrap: on
line source
// 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}}
}