1 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-print-source-range-info -fcxx-exceptions %s 2>&1 | FileCheck %s 2 // RUN: not %clang_cc1 -fsyntax-only -fexperimental-new-constant-interpreter -fdiagnostics-print-source-range-info -fcxx-exceptions %s 2>&1 | FileCheck %s 3 4 constexpr int f() { 5 throw 1; 6 return 0; 7 } 8 9 // CHECK: constexpr-source-ranges.cpp:5:3:{5:3-5:10} 10