NAME
    Acme::UNIVERSAL::can::t - the opposite of UNIVERSAL::can

SYNOPSIS
     use strict;
     use warnings;
     use Test::More;
 
      {
        package Foo;
        sub bar { ... }
     }
 
     use_ok("Acme::UNIVERSAL::can't");
     ok(Foo->can("bar"));
     ok(Foo->can't("baz"));
     done_testing;

DESCRIPTION
    This module will tell you what methods *can't* be called on an object or
    class. The opposite of `UNIVERSAL::can`.

BUGS
    Please report any bugs to
    <http://rt.cpan.org/Dist/Display.html?Queue=Acme-UNIVERSAL-can-t>.

SEE ALSO
    UNIVERSAL.

AUTHOR
    Toby Inkster <tobyink@cpan.org>.

COPYRIGHT AND LICENCE
    This software is copyright (c) 2018 by Toby Inkster.

    This is free software; you can redistribute it and/or modify it under the
    same terms as the Perl 5 programming language system itself.

DISCLAIMER OF WARRANTIES
    THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
    WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
    MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.