model SoilOpCall_RedundantSelf
class A
operations
opA()
begin end
end
class B
attributes
anA:A
operations
opB()
begin
-- self.anA.opA()
anA.opA()
end
end
-- compiling specification soilOpCall.use...
-- soilOpCall.use:13:2:
-- Could not compile soil defined operation opB()' due to the following error:
-- soilOpCall.use:16:4: Variable
anA' in expression `anA.opA()' is undefined.
-- mg