mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
61 lines
576 B
C++
61 lines
576 B
C++
@__experimental_modules_import namespaces_top;
|
|
|
|
namespace N2 { }
|
|
|
|
namespace N2 { }
|
|
|
|
namespace N2 { }
|
|
|
|
namespace N2 { }
|
|
|
|
namespace N2 {
|
|
double& f(double);
|
|
}
|
|
|
|
namespace N3 {
|
|
double& f(double);
|
|
}
|
|
|
|
namespace N5 {
|
|
double &f(double);
|
|
}
|
|
|
|
namespace N6 {
|
|
double &f(double);
|
|
}
|
|
|
|
namespace N7 {
|
|
double &f(double);
|
|
}
|
|
|
|
namespace N8 {
|
|
int &f(int);
|
|
}
|
|
|
|
namespace N9 {
|
|
int &f(int);
|
|
}
|
|
|
|
namespace N10 {
|
|
int &f(int);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace N11 {
|
|
namespace {
|
|
class Foo;
|
|
}
|
|
void consumeFoo(Foo*);
|
|
}
|
|
|
|
namespace N12 {
|
|
namespace {
|
|
class Foo;
|
|
}
|
|
void consumeFoo(Foo*);
|
|
}
|