1 // RUN: %clang_cc1 -std=c++14 -fsyntax-only %s
2 // RUN: %clang_cc1 -std=c++14 -fsyntax-only -fexperimental-new-constant-interpreter %s
6 constexpr unsigned inc() {
8 ++i
; // should not warn value is outside range
12 constexpr unsigned dec() {
14 --i
; // should not warn value is outside range