summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/constexpr-unsigned-high-bit.cpp
blob: 19d8dcab6607388336e6124780c16d535c572547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -std=c++14 -fsyntax-only %s

#include <limits.h>

constexpr unsigned inc() {
  unsigned i = INT_MAX;
  ++i; // should not warn value is outside range
  return i;
}

constexpr unsigned dec() {
  unsigned i = INT_MIN;
  --i; // should not warn value is outside range
  return i;
}