20 lines
185 B
C
20 lines
185 B
C
|
namespace N1 {
|
||
|
int& f(int);
|
||
|
}
|
||
|
|
||
|
namespace N2 {
|
||
|
int& f(int);
|
||
|
}
|
||
|
|
||
|
namespace N3 {
|
||
|
int& f(int);
|
||
|
}
|
||
|
|
||
|
namespace N12 { }
|
||
|
|
||
|
namespace N13 {
|
||
|
void f();
|
||
|
int f(int);
|
||
|
void (*p)() = &f;
|
||
|
}
|