--TEST--
SOAP XML Schema 33: Nested complex types
--SKIPIF--
--FILE--
EOF;
test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"nest"=>array("int"=>123.5)));
echo "ok";
?>
--EXPECTF--
123123
object(stdClass)#%d (2) {
["int"]=>
int(123)
["nest"]=>
object(stdClass)#%d (1) {
["int"]=>
int(123)
}
}
ok