This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make pad names always UTF8
[perl5.git] / ext / XS-APItest / t / subcall.t
1 #!perl
2
3 # Test handling of XSUBs in pp_entersub
4
5 use Test::More tests => 1;
6 use XS::APItest;
7
8 $ref = XS::APItest::newRV($_+1);
9 is \$$ref, $ref, 'XSUBs do not get to see PADTMPs';