xref: /llvm-project/clang-tools-extra/clangd/test/index-serialization/Inputs/sample.cpp (revision 4bc085f5b3eda5273721fd787ffa65e2f155fc45)
1 // Include a file to ensure we have multiple sources.
2 #include "sample.h"
3 
4 // This introduces a symbol, a reference and a relation.
5 struct Bar : public Foo {
6   // This introduces an OverriddenBy relation by implementing Foo::Func.
FuncBar7   void Func() override {}
8 };
9