summaryrefslogtreecommitdiff
path: root/Zend/tests/return_types/rfc002.phpt
blob: a2c326c24aee0b0a3e20111104404cf7745ab460 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
RFC example: Scalar Types
--FILE--
<?php
function answer(): int {
    return 42;
}

var_dump(answer());
--EXPECT--
int(42)