|
There is no conflict. The syntax you want is in the docs:
If a parent class takes parameters, enclose them in an array ref
(mandatory) following the name of the parent class:
package My::Project {
use Object::InsideOut 'My::Class' => [ 'param1', 'param2' ],
'Another::Class' => [ 'param' ];
...
}
In your case, you would use:
package ChildClass; {
use Object::InsideOut 'ParentClass' => [ '_func' ];
...
}
|