foo
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Undef.pm
CommitLineData
5f654d8e 1package Moose::Autobox::Undef;
2use Moose::Role 'with';
3
4our $VERSION = '0.01';
5
6with 'Moose::Autobox::Item';
7
8sub defined { 0 }
9
101;