7 eval "use Test::Output;";
8 plan skip_all => "Test::Output is required for this test" if $@;
19 stderr_like { $foo->new() }
20 qr/\QCalling new() on an instance is deprecated/,
21 '$object->new() is deprecated';
23 Foo->meta->make_immutable, redo
24 if Foo->meta->is_mutable;