Added test case for sequence diagram with multiple translation units

This commit is contained in:
Bartek Kryza
2022-12-05 23:57:00 +01:00
parent 14c2cb6263
commit f7a1130bab
15 changed files with 256 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
namespace clanguml {
namespace t20014 {
template <typename T, typename F> struct C {
F c1(F i, F j) {
return c_.b1(i, j);
}
F c2(F i, F j){
return c_.b2(i, j);
}
T c_;
};
}
}