http://qs1969.pair.com?node_id=756092


in reply to Re^2: The value of declarations
in thread The value of declarations

I wonder, can you do any reliable compile time checks on methods at all? I think this is valid:
my $x = eval 'class A { method foo($bar, $baz} }; A.new'; $x.foo();

Any compile time check would complain about a missing method.