mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 00:24:03 -04:00
24 lines
236 B
C++
24 lines
236 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;
|
|
}
|
|
|
|
namespace AddAndReexportBeforeImport {
|
|
int S;
|
|
}
|