reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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;
}