This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Place in dictionary sort order
[perl5.git] / lib / perl5db / t / lvalue-bug
CommitLineData
6fd69bbe
FR
1#!/usr/bin/perl
2#
3# This code is used by lib/perl5db.t !!!
4#
5
6my $i;
7sub foo () : lvalue { $i }
8foo = 1;
9print defined foo ? "foo is defined" : "foo is still undef", "\n";