More simple regexp tests and test docs
[p5sagit/p5-mst-13.2.git] / t / op / ref.t
index 0787295..4e024d8 100755 (executable)
@@ -101,7 +101,7 @@ $subref = \&mysub;
 &$subref;
 
 $subrefref = \\&mysub2;
-&$$subrefref("ok 24\n");
+$$subrefref->("ok 24\n");
 sub mysub2 { print shift }
 
 # Test the ref operator.