summaryrefslogtreecommitdiffstats
path: root/Tests/VisibilityInlinesHidden/foo.cpp
blob: 2b66b69be09971ba28ab00d0f23512c2bcc8c21c (plain)
1
2
3
4
5
6
7
8
9
10
11
class Foo
{
public:
    void bar() {}
};

void baz()
{
	Foo foo;
	foo.bar();
}