11 use Moose::Deprecated -api_version => '1.08';
22 lives_ok { Foo->new( x => {} ) }
23 'Setting coerce => 1 without a coercion on the type does not cause an error in the constructor';
25 lives_ok { Foo->new->x( {} ) }
26 'Setting coerce => 1 without a coercion on the type does not cause an error when setting the attribut';
28 lives_ok { Foo->new( x => 42 ) } 'asasf';