1__asm__ (".symver foo, foo@VER_0");
2
3int foo(void);
4
5int foo(void) {
6  return 0;
7}
8