diff --git a/tests/lang/bug27395.phpt b/tests/lang/bug27395.phpt deleted file mode 100644 index 7a9e07b6910..00000000000 --- a/tests/lang/bug27395.phpt +++ /dev/null @@ -1,60 +0,0 @@ ---TEST-- -Bug #27395 (reference to an array index makes the array to be passed by reference always) ---FILE-- - ---EXPECT-- -int(1) -array(1) { - [0]=> - &int(1) -} -int(1) -array(1) { - [0]=> - &int(1) -} --------- -array(1) { - [0]=> - int(1) -} -array(1) { - [0]=> - int(1) -} -array(1) { - [0]=> - int(1) -} -array(1) { - [0]=> - int(1) -}