hcl/t/var-01.err
hyung-hwan e91dde6213
Some checks failed
continuous-integration/drone/push Build is failing
added some error check scripts
2023-11-27 00:08:59 +09:00

15 lines
310 B
Plaintext

defclass Object {
{
## this must not be allowed at this level. if it's allowed,
## it should be at the top-level which is above the class level. this is confusing.
| j | ## ERROR: syntax error
set j 20;
printf ">>> %d\n" j;
}
defun ::* init() {
printf "Object init...\n";
return self;
};
};