Updated t00065 test case

This commit is contained in:
Bartek Kryza
2023-05-24 22:23:03 +02:00
parent 75c027262f
commit c3dcac72da
6 changed files with 42 additions and 1 deletions

View File

@@ -4,7 +4,14 @@
namespace clanguml {
namespace t00065 {
enum class ABC { a, b, c };
enum XYZ { x, y, z };
struct A {
ABC abc;
XYZ xyz;
detail::AImpl *pimpl;
};
}