IRIX failure with long doubles.
[p5sagit/p5-mst-13.2.git] / t / op / universal.t
index 00e99fc..fc53c39 100755 (executable)
@@ -9,7 +9,7 @@ BEGIN {
     $| = 1;
 }
 
-print "1..91\n";
+print "1..94\n";
 
 $a = {};
 bless $a, "Bob";
@@ -57,8 +57,12 @@ package main;
 $a = new Alice;
 
 test $a->isa("Alice");
+test $a->isa("main::Alice");    # check that alternate class names work
+
+test(("main::Alice"->new)->isa("Alice"));
 
 test $a->isa("Bob");
+test $a->isa("main::Bob");
 
 test $a->isa("Female");