Created
October 12, 2015 22:33
-
-
Save tokuhirom/3083ec8e94e293bc5a3e to your computer and use it in GitHub Desktop.
IO::Path.e cache is too strong
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v6; | |
use Test; | |
unlink 'foobar.txt'; | |
my $fh = open 'foobar.txt', :rw; | |
$fh.print('foo'); | |
ok $fh.path.e; | |
done-testing; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment