bolt/deps/llvm-18.1.8/clang/test/Misc/constexpr-subobj-init-source-ranges.cpp
2025-02-14 19:21:04 +01:00

11 lines
292 B
C++

// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-print-source-range-info %s 2>&1 | FileCheck %s --strict-whitespace
struct DelBase {
constexpr DelBase() = delete;
};
// CHECK: :{[[@LINE+1]]:21-[[@LINE+1]]:28}
struct Foo : public DelBase {
constexpr Foo() {};
};
constexpr Foo f;