12 lines
156 B
C
12 lines
156 B
C
|
|
#include "../struct.h"
|
|
|
|
struct error_statement
|
|
{
|
|
struct statement super;
|
|
|
|
const wchar_t* message;
|
|
|
|
struct statement* substatement;
|
|
};
|
|
|