You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
256 B
26 lines
256 B
4 months ago
|
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 {}
|