0f8a29fdb9
Co-authored-by: nerix <nerixdev@outlook.de>
15 lines
208 B
C++
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;
|
|
};
|