This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
TODO test for $AUTOLOAD with XS AUTOLOAD
[perl5.git] / ext / XS-APItest / t / eval-filter.t
1 #!perl -w
2 use strict;
3
4 use Test::More tests => 1;
5 use XS::APItest;
6
7 BEGIN { eval "BEGIN{ filter() }" }
8
9 is "foo", "fee", "evals share filters with the currently compiling scope";
10 # See [perl #87064].