sub foo : Property { $_ < 10 } main->foo = 9; main->foo++; # dies #### has $foo where { $_ < 10 }; #### my $foo where { $_ < 10 }; $foo = 9; $foo++; # dies
## has $foo where { $_ < 10 }; ##
## my $foo where { $_ < 10 }; $foo = 9; $foo++; # dies