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

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

1;