1 /* The commented line must have the same line number in the other 2 "thefile.c". */ 3 4 #define WANT_F2 5 #include "../../lspec.h" 6 dupname(int y)7static int dupname(int y) 8 { 9 label: return y; 10 } 11 twodup()12static int twodup () 13 { 14 return 0; 15 } 16 n(int y)17int n(int y) 18 { 19 int v = dupname(y) - 23; /* thefile breakpoint */ 20 return v + twodup (); /* after dupname */ 21 } 22 overload(double x)23int NameSpace::overload(double x) 24 { 25 return (int) x - 23; 26 } 27 z2()28int z2 () 29 { 30 return 0; 31 } 32