1 extern int foo (void) __attribute__((section (".gnu.linkonce.t.1"), weak,
2 				     __visibility__ ("hidden")));
3 
4 int
foo(void)5 foo (void)
6 {
7   return 1;
8 }
9 
10 int
foo2(void)11 foo2 (void)
12 {
13   return 1;
14 }
15