Adding template class specialization sequence diagram test case

This commit is contained in:
Bartek Kryza
2022-11-21 23:56:02 +01:00
parent f3aec40b2a
commit 4513e17275
9 changed files with 640 additions and 13 deletions

View File

@@ -64,7 +64,9 @@ int tmain()
A a;
B b(a);
return b.wrap_add3(1, 2, 3);
auto tmp = a.add(1, 2);
return b.wrap_add3(tmp, 2, 3);
}
}
}