Bumping version to 0.006022
[p5sagit/Devel-Declare.git] / t / load_module.t
CommitLineData
2cf7b7e2 1=pod
2
3This tests against a segfault when PL_parser becomes NULL temporarly, while
4another module is loaded.
5
6=cut
7
8use strict;
9use warnings;
10
11use Test::More tests => 1; # last test to print
12
13use Devel::Declare 'method' => sub{};
14
15sub lowercase {
16 lc $_[0];
17}
18
19is lowercase("FOO\x{263a}"), "foo\x{263a}";