CMake/Tests/Visibility/foo.cpp
Brad King 771f1b00dc Tests: Rename Visibility{InlinesHidden =>}
We will soon generalize it to cover other visibility properties.
2015-05-22 15:24:18 -04:00

12 lines
79 B
C++

class Foo
{
public:
void bar() {}
};
void baz()
{
Foo foo;
foo.bar();
}