Skip Menu |

This queue is for tickets about the Moose CPAN distribution.

Report information
The Basics
Id: 118325
Status: resolved
Priority: 0/
Queue: Moose

People
Owner: Nobody in particular
Requestors: DROLSKY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 2.1903-TRIAL



Subject: Moose doesn't warn when reader/writer/accessor names conflict
package Foo; use strict; use warnings; use Moose; has foo => ( reader => 'foo', writer => 'foo', ); has bar => ( accessor => 'bar', writer => 'bar', ); ---- We should catch this and throw an error. As it stands now Moose silently creates one of the methods and throws out the other.