Skip Alien-Ditaa
[gitmo/Moose.git] / t / bugs / constructor_object_overload.t
CommitLineData
5d27ac73 1#!/usr/bin/perl
2use strict;
3use warnings;
a28e50e4 4use Test::More;
5d27ac73 5
6{
7 package Foo;
8
9 use Moose;
10
11 use overload '""' => sub {''};
12
13 sub bug { 'plenty' }
14
15 __PACKAGE__->meta->make_immutable;
16}
17
18ok(Foo->new()->bug(), 'call constructor on object reference with overloading');
19
a28e50e4 20done_testing;