hcl/t/class-5001.err

40 lines
637 B
Plaintext
Raw Normal View History

defclass B | x y | {
};
defclass X :: B | a b | {
2024-02-03 09:50:10 +00:00
defun :* new(t) {
| a |
set self.a t;
set a 100;
set self.b (* t 2);
set self.c (fun(b) { ##ERROR: syntax error - unknown class-level variable name
printf "xxxx [%d]\n" b;
});
return self;
};
defun print() {
self.c (+ self.a self.b);
printf "a=%d b=%d\n" self.a self.b;
}
};
---
defclass X {
defun :* xxx() {
return X;
}
defun :* qqq() {
return "hello"
}
defun String:length() { ##ERROR: syntax error - class name prohibited
return (str.length self)
}
}