llvm-project/clang-tools-extra/clangd/test/index-serialization/Inputs/sample.cpp

9 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 {}
};