• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2    Compile this with:
3 
4    g++ -g -c -Wall test27-add-aliased-function-v1.cc
5  */
6 
7 void
foo()8 foo()
9 {
10 }
11 
12 void
bar()13 bar()
14 {
15 }
16 
17 void
18 baz()  __attribute__ ((alias("_Z3barv")));
19