This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
new perldelta
[perl5.git] / dist / ExtUtils-ParseXS / t / XSAlias.xs
1 MODULE = My PACKAGE = My
2
3 void
4 do(dbh)
5    SV *dbh
6 ALIAS:
7     dox = 1
8     lox => dox
9     pox = 1
10     pox = 2
11     docks = 1
12     dachs => lox
13     xunx = 0
14     xukes => do
15 CODE:
16 {
17    int x;
18    ++x;
19 }