23 lines
433 B
C
23 lines
433 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../new.h"
|
|
|
|
#include "inheritance.h"
|
|
#include "struct.h"
|
|
#include "new.h"
|
|
|
|
struct expression* new_unreachable_expression(void)
|
|
{
|
|
ENTER;
|
|
|
|
struct unreachable_expression* this =
|
|
(void*) new_expression(
|
|
/* inheritance: */ &unreachable_expression_inheritance,
|
|
/* cost: */ INT_MAX,
|
|
/* size: */ sizeof(*this));
|
|
|
|
EXIT;
|
|
return (void*) this;
|
|
}
|
|
|