#!/usr/local/bin/perl
package X;
use Class::MakeMethods::Emulator::MethodMaker
get_set => [qw/ a b /],
copy => 'copy';
sub new { bless {}, shift; }
package main;
BEGIN { unshift @INC, ( $0 =~ /\A(.*?)[\w\.]+\z/ )[0] }
use Test;
my $o = new X;
TEST { 1 };
TEST { $o->a ('foo') eq 'foo' };
TEST { $c = $o->copy; };
TEST { $c->a eq 'foo' };
TEST { $c->a ('bar') eq 'bar' };
TEST { $o->a eq 'foo' };
TEST { $o->a ('baz') eq 'baz' };
TEST { $c->a eq 'bar' };
exit 0;
syntax highlighted by Code2HTML, v. 0.9.1