The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
123456789 #!/usr/bin/perl## This code is used by lib/perl5db.t !!!#my $i;sub foo () : lvalue { $i }foo = 1;print defined foo ? "foo is defined" : "foo is still undef", "\n";
#!/usr/bin/perl
#
# This code is used by lib/perl5db.t !!!
my
$i
;
sub
foo () : lvalue {
}
foo = 1;
print
defined
foo ?
"foo is defined"
:
"foo is still undef"
,
"\n"