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

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

1;