diff --git a/tests-parsimony/objectExample.c b/tests-parsimony/objectExample.c index 6fb3111..1af2221 100644 --- a/tests-parsimony/objectExample.c +++ b/tests-parsimony/objectExample.c @@ -3,26 +3,26 @@ typedef long long int_t; typedef long double flt_t; -@object() +@object("OBJECT") struct Integer { int_t i; }; @addObject() -// struct Float { -// flt_t _value; -// }; -// @addObject() +struct Float { + flt_t _value; +}; +@addObject() struct String { char *value; }; @addObject() -// struct Symbol { -// char *name; -// }; -// @addObject() +struct Symbol { + char *name; +}; +@addObject() @endObject()