Updated test cases documentation

This commit is contained in:
Bartek Kryza
2022-05-19 00:11:51 +02:00
parent 79be6ef788
commit 073b3d157d
54 changed files with 1926 additions and 1874 deletions

View File

@@ -55,6 +55,11 @@ template <typename T> struct E {
T e;
};
template <typename T, typename... Args> struct G {
T g;
std::tuple<Args...> args;
};
using namespace ABCD;
class R {
public:
@@ -73,6 +78,8 @@ public:
template <typename T> T get_f(const F<T> &f) { return f.f; }
int get_int_f(const F<int> &f) { return f.f; }
G<int, float, std::string> gintstring;
private:
mutable E<std::string> estring;
};