1<?php
2
3declare(strict_types=1);
4
5function function_declared_in_strict_mode(int $x) {
6    echo "Success!";
7}
8