diff options
| author | ruki <[email protected]> | 2024-04-08 23:08:57 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-04-08 23:08:57 +0800 |
| commit | f64943bd2dacfb0790472fcbd6eb9731c5e4adc0 (patch) | |
| tree | 4786ec52cfcf99c0a316ed2100c17806e1cc4629 /tests/projects/other/parallel_build/2.cpp | |
| parent | 61141e77032daef49cc9f627c1f833fcbb00eaba (diff) | |
add parallel test
Diffstat (limited to 'tests/projects/other/parallel_build/2.cpp')
| -rw-r--r-- | tests/projects/other/parallel_build/2.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/projects/other/parallel_build/2.cpp b/tests/projects/other/parallel_build/2.cpp new file mode 100644 index 000000000..3bedf31ca --- /dev/null +++ b/tests/projects/other/parallel_build/2.cpp @@ -0,0 +1,31 @@ +// Make this object complex and cost longer compile time... +#include <algorithm> +#include <any> +#include <bitset> +#include <filesystem> +#include <fstream> +#include <iostream> +#include <list> +#include <map> +#include <optional> +#include <queue> +#include <string> +#include <unordered_map> +#include <variant> +#include <vector> + +int main() { + + using Type = std::variant<int8_t, uint8_t, int16_t, uint16_t, int32_t, + uint32_t, int64_t, uint64_t, double, float>; + Type a, b, c; + a = 5; + b = 3.0; + c = 4.0f; + double r; + std::visit([&](auto a, auto b, auto c) { r = a + b + c; }, a, b, c); + std::visit([&](auto a, auto b, auto c) { r = a + b - c; }, a, b, c); + std::visit([&](auto a, auto b, auto c) { r = a - b - c; }, a, b, c); + std::visit([&](auto a, auto b, auto c) { r = (a + b + c) * 2; }, a, b, c); + std::visit([&](auto a, auto b, auto c) { r = (a + b - c) * 3; }, a, b, c); +}
\ No newline at end of file |
