xref: /openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/labelconst.aux (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
1use XS::APItest qw(labelconst);
2my $z = "";
3$z .= labelconst FOO:;
4$z .= labelconst BAR:
5	;
6$z .= labelconst BAZ
7	:;
8$z .= labelconst
9	QUUX:;
10$z;
11