Error Handling Learning Mode

What will this code output?

<?php
set_error_handler(function($errorNumber, $errorMessage, $file, $line) {
 debug_print_backtrace();
});
trigger_error('Hello world', E_USER_WARNING);