blob: f9f13b930d62e797f57b459d10704123a19a0c2b (
plain)
1
2
3
4
5
6
7
8
|
// 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 {}
};
|