brintos

brintos / llvm-project-archived public Read only

0
0
Text · 450 B · 990d105 Raw
13 lines · cpp
1// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-print-source-range-info %s 2>&1 | FileCheck %s --strict-whitespace2// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-print-source-range-info -fexperimental-new-constant-interpreter %s 2>&1 | FileCheck %s --strict-whitespace3 4struct DelBase {5  constexpr DelBase() = delete;6};7 8// CHECK:      :{[[@LINE+1]]:21-[[@LINE+1]]:28}9struct Foo : public DelBase {10  constexpr Foo() {};11};12constexpr Foo f;13