blob: f9f13b930d62e797f57b459d10704123a19a0c2b [file] [log] [blame]
// 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 {}
};