j
k
j a
j l
The following code generates the warning: Attempt to override a non local variable "foo" with a non variable.
class A { function foo; }
class B { inherit A; void foo() { return; } }
How can that warning be avoided?
Back to the thread
Back to the list