bolt/deps/llvm-18.1.8/clang-tools-extra/clangd/test/index-serialization/Inputs/sample.cpp
2025-02-14 19:21:04 +01:00

8 lines
260 B
C++

// Include a file to ensure we have multiple sources.
#include "sample.h"
// This introduces a symbol, a reference and a relation.
struct Bar : public Foo {
// This introduces an OverriddenBy relation by implementing Foo::Func.
void Func() override {}
};