From a8b8ef6b7c160e5e0838b39083552a9e9823602d Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 29 Oct 2025 14:53:37 -0600 Subject: [PATCH] t/run/exit.t: Fix syntax of 'my' I found this by code reading --- t/run/exit.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/run/exit.t b/t/run/exit.t index ce3270e4f8d9..73845ffa1c4d 100644 --- a/t/run/exit.t +++ b/t/run/exit.t @@ -45,7 +45,7 @@ plan(tests => $numtests); my $native_success = 0; $native_success = 1 if $^O eq 'VMS'; -my $exit, $exit_arg; +my ($exit, $exit_arg); $exit = run('exit'); is( $exit >> 8, 0, 'Normal exit' );