1int foo() { return 42; }
2
3int bar() { return 0; }
4
5#pragma GCC visibility push(hidden)
6int baz() { return 1; }
7#pragma GCC visibility pop
8