The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More 'no_plan';
use 5.010;

use charnames ':full';
use Regexp::Grammars;

my $grammar = qr{
    \N{LESS-THAN SIGN} a \N{GREATER-THAN SIGN}
}xms;

ok '<a>' =~ $grammar => '\N{NAMED} correctly interpolated'