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

use Try;

try {
}
finally {
}
catch {
}

1;