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

use Dist::CheckConflicts
    -dist => 'Bar',
    -conflicts => {
        'Bar' => '0.03',
    },
    -also => [
        'Bar::Conflicts::Bad2',
    ];

1;