diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-04-30 09:09:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-04-30 09:09:45 +0000 |
commit | e239669ad09e0c21cd47182de725999849a248b6 (patch) | |
tree | 89b7befcf03fa0de92a1f0b2c3b0b81e790f3991 /perl_checker.src/test | |
parent | 3c8049e7cab271b630f0aa25ea251db7d21c24a0 (diff) | |
download | perl-MDK-Common-e239669ad09e0c21cd47182de725999849a248b6.tar perl-MDK-Common-e239669ad09e0c21cd47182de725999849a248b6.tar.gz perl-MDK-Common-e239669ad09e0c21cd47182de725999849a248b6.tar.bz2 perl-MDK-Common-e239669ad09e0c21cd47182de725999849a248b6.tar.xz perl-MDK-Common-e239669ad09e0c21cd47182de725999849a248b6.zip |
detect "$xxx == undef"
Diffstat (limited to 'perl_checker.src/test')
-rw-r--r-- | perl_checker.src/test/context.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl_checker.src/test/context.t b/perl_checker.src/test/context.t index 5fd7809..edb0452 100644 --- a/perl_checker.src/test/context.t +++ b/perl_checker.src/test/context.t @@ -13,3 +13,5 @@ length @l never use "length @l", it returns the l 'xxx' > 'yyy' you should use a string operator, not the number operator ">" 1 cmp 2 you should use a number operator, not the string operator "cmp" (or replace the number with a string) + +$xxx == undef context undef is not compatible with context float |