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

use Try;

try {
}
catch {
}
finallyy {
}

1;