11 lines
221 B
C
11 lines
221 B
C
|
|
#include "inheritance.h"
|
|
#include "print.h"
|
|
#include "free.h"
|
|
|
|
struct expression_inheritance unreachable_expression_inheritance =
|
|
{
|
|
.print = unreachable_expression_print,
|
|
.free = free_unreachable_expression,
|
|
};
|
|
|