Help for this page

Select Code to Download


  1. or download this
                print STDERR "FUNCTION IS ($func)\n";
    
    ...
                no strict 'refs';
                print STDERR "(\&\$func) TRUE!\n"  # line 137 from output 
    +below
                  if &$func(42, 1);  # line that's dieing
    
  2. or download this
    FUNCTION IS (is_int)
    (&is_int) TRUE!
    ...
    #   Failed test 'Configure is successful with valid data'
    #   at t/Module-Configurable.t line 49.
    # died: Undefined subroutine &Module::Configurable::is_int called at /
    +nfs/pdx/disks/nehalem.pde.077/projects/libraries/Module/blib/lib/Modu
    +le/Configurable.pm line 137.
    
  3. or download this
    print STDERR "(\&{\$func}) TRUE!\n"
                  if &{'Params::SimpleValidate::'.$func}(42, 1);