Error Handling Learning Mode

What will this script output?

<?php
function addOne($arg) {
$arg++;
}
$a = 0;
addOne(&$a);
echo $a;