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

use Dist::CheckConflicts
    -dist => 'Bar',
    -conflicts => {
        'Bar::Two' => '0.02',
    },
    -also => [
        'Bar::Conflicts::Bad3',
    ];

1;