Message-Id: <
20010825145817.A11788@soto.kasei.com>
(Applied with minor modifications.)
p4raw-id: //depot/perl@11752
package Alice;
@ISA=qw(Bob Female);
-sub drink {}
+sub sing;
+sub drink { return "drinking " . $_[1] }
sub new { bless {} }
$Alice::VERSION = 2.718;
package main;
-my $i = 2;
-sub test { print "not " unless shift; print "ok $i\n"; $i++; }
+{ my $i = 2;
+ sub test { print "not " unless shift; print "ok $i\n"; $i++; }
+}
$a = new Alice;
test ! $a->isa('Programmer');
-test $a->can("drink");
-
test $a->can("eat");
-
test ! $a->can("sleep");
+test my $ref = $a->can("drink"); # returns a coderef
+test $a->$ref("tea") eq "drinking tea"; # ... which works
+test $ref = $a->can("sing");
+eval { $a->sing };
+test $@; # ... but not if no actual subroutine
test (!Cedric->isa('Programmer'));