summaryrefslogtreecommitdiff
path: root/Tests/Visibility/shared.cpp
blob: 4897ff819c2e61f16f9f4fc2b45bd1993f9cca68 (plain)
1
2
3
4
5
6
7
8
extern "C" int bar(void);
void baz();

int shared()
{
  baz();
  return bar();
}