blob: 4e5108e1310a45388942d69470337b11db617513 (
plain) (
blame)
1
2
3
4
5
6
7
|
use strict;
use Test::More tests => 1;
use Attribute::Handlers;
# This had been failing since the introduction of proxy constant subroutines
use constant SETUP => undef;
sub Test : ATTR(CODE) { };
ok(1, "If we got here, CHECK didn't fail");
|