--TEST-- Bug #73964 (Segmentation fault (11)) --SKIPIF-- --FILE-- lua = new Lua(); $this->lua->registerCallback("log", array($this, "API_LuaLog")); } function API_LuaLog( $entry) { echo("from lua: $entry"); } public function RunTest() { $this->lua->eval(<<lua->RootTable; $this->lua->call("TestFunc", array("okey")); } } $a = new LuaTest(); $a->runtest(); ?> --EXPECT-- from lua: okey