1package t::lib::Child;
2
3use t::lib::Parent;
4our @ISA = qw(t::lib::Parent);
5
6sub www { 2 }
7sub xxx { 2 }
8
9sub BUILD { 1 }
10
111;
12