#include <iostream>

enum class Constant : uint32_t {
    /**
     * The byte size of the cache token.
     */
    BYTE_SIZE_OF_CACHE_TOKEN = 32u,
    /**
     * The maximum number of files for each type of cache in compilation caching.
     */
    MAX_NUMBER_OF_CACHE_FILES = 32u,
};

struct Model;

struct Model final {
    struct ExtensionNameAndPrefix final {
        int aaa[20];
    };
    int outputs[20];
};

int main(int argc, char **argv)
{
    std::cout << "Hello World\n";
}
