File: G.pm

package info (click to toggle)
libobject-realize-later-perl 0.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 172 kB
  • sloc: perl: 421; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
package C::G;
use base 'C';

use Object::Realize::Later
  ( becomes            => 'A::B'
  , realize            => sub { bless(shift, 'A::B') }
  , warn_realization   => 1
  , warn_realize_again => 1
  );

sub c_g()     {'c_g'}

1;