1--TEST--
2Bug #71884 (Null pointer deref (segfault) in stream_context_get_default)
3--FILE--
4<?php
5$arr=array();
6$arr[0]['A']=0;
7try {
8    stream_context_get_default($arr);
9} catch (ValueError $exception) {
10    echo $exception->getMessage() . "\n";
11}
12?>
13--EXPECT--
14Options should have the form ["wrappername"]["optionname"] = $value
15