Files
clang-uml/tests/t30006/t30006.cc
2023-03-01 20:22:00 +01:00

27 lines
270 B
C++

namespace clanguml {
namespace t30006 {
namespace B {
struct BB { };
}
/// \uml{note[top] Top A note.}
namespace A {
struct A1 {
B::BB *b;
};
}
namespace C {
struct CC { };
}
/// \uml{note[bottom] Bottom A note.}
namespace A {
struct A2 {
C::CC *c;
};
}
}
}