1--TEST-- 2function that is conditionally defined at runtime should not cause compiler error 3--FILE-- 4<?php 5 6if (0) { 7 function foo() { 8 } 9} 10 11use function bar\foo; 12 13echo "Done"; 14 15?> 16--EXPECT-- 17Done 18