mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
25 lines
256 B
C++
25 lines
256 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;
|
|
}
|
|
|
|
namespace Empty {}
|