renumbers error testers basing on 5000.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
fixed a compiler bug not checking the lower bound of block depth in find_variable_backward_with_word()
This commit is contained in:
23
t/class-5001.err
Normal file
23
t/class-5001.err
Normal file
@ -0,0 +1,23 @@
|
||||
defclass B | x y | {
|
||||
|
||||
};
|
||||
|
||||
defclass X ::: B | a b | {
|
||||
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;
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user