⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 is_deeply_dne_bug.t

📁 source of perl for linux application,
💻 T
字号:
#!/usr/bin/perl -w# test for rt.cpan.org 20768## There was a bug where the internal "does not exist" object could get# confused with an overloaded object.BEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib';    }}use strict;use Test::More;BEGIN {    if( !eval "require overload" ) {        plan skip_all => "needs overload.pm";    }    else {        plan tests => 2;    }}{    package Foo;    use overload    'eq' => \&overload_equiv,    '==' => \&overload_equiv;    sub new {        return bless {}, shift;    }    sub overload_equiv {        if (ref($_[0]) ne 'Foo' || ref($_[1]) ne 'Foo') {            print ref($_[0]), " ", ref($_[1]), "\n";            die "Invalid object passed to overload_equiv\n";        }        return 1; # change to 0 ... makes little difference    }}my $obj1 = Foo->new();my $obj2 = Foo->new();eval { is_deeply([$obj1, $obj2], [$obj1, $obj2]); };is $@, '';

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -