``` function abc() { global $test; list( $test, $example ) = my_function( $_POST ); return $example; } ``` will report: Unused global variable $test. But it isn't unused, since we assign a new value to it.