Subject: | methodcall syntax, pkg->method unsupported |
See test 35
# methodcall syntax
package dummy;sub meth{print "ok"};package main;dummy->meth
=>
ok
The CV "meth" is not detected in the dummy stash.
Workaround: use -udummy to force all symbols from the given package.
--
Reini Urban