xref: /PHP-5.5/Zend/tests/bug38211.phpt (revision 610c7fbe)
1--TEST--
2Bug #38211 (variable name and cookie name match breaks script execution)
3--FILE--
4<?php
5$test = 'test';
6unset($$test);
7echo "ok\n";
8?>
9--EXPECT--
10ok
11