18 is($x // 0, 1, ' // : left-hand operand defined');
21 is($x // 1, 1, ' // : left-hand operand undef');
24 is($x // 0, '', ' // : left-hand operand defined but empty');
26 like([] // 0, qr/^ARRAY/, ' // : left-hand operand a referece');
30 is($x, 1, ' //=: left-hand operand undefined');
33 is($x, 1, '//=: left-hand operand defined');
37 is($x, '', '//=: left-hand operand defined but empty');
39 @ARGV = (undef, 0, 3);
40 is(shift // 7, 7, 'shift // ... works');
41 is(shift() // 7, 0, 'shift() // ... works');
42 is(shift @ARGV // 7, 3, 'shift @array // ... works');
44 @ARGV = (3, 0, undef);
45 is(pop // 7, 7, 'pop // ... works');
46 is(pop() // 7, 0, 'pop() // ... works');
47 is(pop @ARGV // 7, 3, 'pop @array // ... works');
49 # Test that various syntaxes are allowed
51 for (qw(getc pos readline readlink undef umask <> <FOO> <$foo> -f)) {
52 eval "sub { $_ // 0 }";
53 is($@, '', "$_ // ... compiles");
56 # Test for some ambiguous syntaxes
58 eval q# sub f ($) { } f $x / 2; #;
60 eval q# sub f ($):lvalue { $y } f $x /= 2; #;
62 eval q# sub f ($) { } f $x /2; #;
63 like( $@, qr/^Search pattern not terminated/ );
64 eval q# sub { print $fh / 2 } #;
66 eval q# sub { print $fh /2 } #;
67 like( $@, qr/^Search pattern not terminated/ );
69 # [perl #28123] Perl optimizes // away incorrectly
71 is(0 // 2, 0, ' // : left-hand operand not optimized away');
72 is('' // 2, '', ' // : left-hand operand not optimized away');
73 is(undef // 2, 2, ' // : left-hand operand optimized away');