3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Generic\Space { function bar() { echo "bar over here!"; } } namespace Some\Other { class Foo { use \My\TraitSpace\NiceTrait; function baz() { $this->bar = function() {echo 'im a callable bar';}; } } } namespace My\TraitSpace { use \Generic\Space; trait NiceTrait { } namespace { $foo = new Some\Other\Foo(); $foo->baz(); $foo->bar(); }
Output for 5.4.0 - 5.4.30
Fatal error: Namespace declarations cannot be nested in /in/nttHc on line 33
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_USE, expecting T_FUNCTION in /in/nttHc on line 14
Process exited with code 255.

preferences:
183.05 ms | 1395 KiB | 67 Q