un-todo foreign tests we pass :-)
[p5sagit/Function-Parameters.git] / t / foreign / signatures / proto.t
index ded1cc4..0f68e13 100644 (file)
@@ -30,14 +30,14 @@ BEGIN { is(@warnings, 0, 'no warnings with correct :proto declarations') }
 fun invalid_proto ($x) : (invalid) { $x }
 
 BEGIN {
-    TODO: {
-        local $TODO = ':proto checks not yet implemented';
+    #TODO: {
+    #    local $TODO = ':proto checks not yet implemented';
         is(@warnings, 1, 'warning with illegal :proto');
         like(
             $warnings[0],
             qr/Illegal character in prototype for fun invalid_proto : invalid at /,
             'warning looks sane',
         );
-    }
+    #}
 }