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

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