Show
Ignore:
Timestamp:
04/25/05 21:09:55 (4 years ago)
Author:
corion
svk:copy_cache_prev:
3850
Message:

splice([], 1) now works

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/builtins/arrays/splice.t

    r2314 r2335  
    132132 
    133133# un comment this to test, but now it causes a fatal error 
    134 eval_ok '# splice([], 1)', '... this causes a fatal error'; 
    135  
     134@a = splice([], 1); 
     135is +@a, 0, '... empty lists are not fatal anymore';