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

use Dist::CheckConflicts
    -conflicts => {
        'Bar' => '0.01',
    },
    -also => [
        'Bar::Conflicts::Good2',
    ];

1;