lambda-calc-1/statement/error/struct.h
2025-01-26 19:31:24 -06:00

14 lines
176 B
C

#include <wchar.h>
#include "../struct.h"
struct error_statement
{
struct statement super;
const wchar_t* message;
struct statement* substatement;
};