summaryrefslogtreecommitdiffstats
path: root/t/lib/basic/Bar/Conflicts2.pm
blob: a26606c6fb19885150e0e761e61a6dd822cda4ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Bar::Conflicts2;
use strict;
use warnings;

use Dist::CheckConflicts
    -conflicts => {
        'Bar::Also' => 0.06,
    },
    -also => [
        'Bar::Conflicts3',
    ];

1;