You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
This is a simplified version of xtestc/0274.t which is failing due to reset not working for a smartmatch
other tests impacted by this case:
xtestc/0274.t
op/reset.t
submatch { shift =~ m?xyz? ? 1 : 0; }
print"1..4\n";
print"ok 1 - first match succeeds\n"if match("xyz");
print"ok 2 - second match fails\n"unless match("xyz");
reset;
print"ok 3 - match after reset succeeds\n"if match("xyz"); # should match againprint"ok 4 - reset + match before => match fails\n"unless match("xyz");
The text was updated successfully, but these errors were encountered:
This is a simplified version of xtestc/0274.t which is failing due to reset not working for a smartmatch
other tests impacted by this case:
The text was updated successfully, but these errors were encountered: