mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
17 lines
219 B
C++
17 lines
219 B
C++
// Merge success
|
|
namespace N1 {
|
|
extern int x0;
|
|
}
|
|
|
|
// Merge multiple namespaces
|
|
namespace N2 {
|
|
extern int x;
|
|
}
|
|
namespace N2 {
|
|
extern float y;
|
|
}
|
|
|
|
// Merge namespace with conflict
|
|
namespace N3 {
|
|
extern double z;
|
|
}
|