summaryrefslogtreecommitdiffstats
path: root/t/basic.t
blob: 04938624b32be4e05aec0b73728cb59470b1f630 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

ok(1 ~~ 1);
{
    use smartmatch sub { 0 };
    ok(!(1 ~~ 1));
}
ok(1 ~~ 1);

done_testing;