The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

package Test::C;

# FILENAME: A.pm
# CREATED: 26/03/12 14:03:00 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: test package

our $VERSION = 1.00;

sub example {
  return "C";
}

1;