Files
chatterino2/lib/twitch-eventsub-ws/ast/lib/tests/resources/const.hpp
2025-02-02 16:03:24 +00:00

15 lines
208 B
C++

#include <optional>
#include <vector>
struct Pod {
};
struct Const {
const int a;
const bool b;
const char c;
const Pod d;
const std::vector<bool> e;
const std::optional<bool> f;
};