public virtual class parent { public static void doStuff(){system.debug('stuff');} } public class child extends parent{}
When i call
child.doStuff();
I get this error: the method does not exist or the signature is incorrect: child.doStuff ()
Are static methods not inherited in salesforce, or am I doing something wrong?
naomi
source share