summaryrefslogtreecommitdiff
path: root/Zend/tests/return_types/rfc002.phpt
blob: 2f3ff02b1cd49a0b076a32fdaeab2f002777a3fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
RFC example: Scalar Types

--FILE--
<?php
function answer(): int {
    return 42;
}

var_dump(answer());

--EXPECTF--
int(42)