summaryrefslogtreecommitdiff
path: root/Zend/tests/return_types/rfc002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/return_types/rfc002.phpt')
-rw-r--r--Zend/tests/return_types/rfc002.phpt2
1 files changed, 0 insertions, 2 deletions
diff --git a/Zend/tests/return_types/rfc002.phpt b/Zend/tests/return_types/rfc002.phpt
index 2f3ff02b1c..d7c7d28fd0 100644
--- a/Zend/tests/return_types/rfc002.phpt
+++ b/Zend/tests/return_types/rfc002.phpt
@@ -1,6 +1,5 @@
--TEST--
RFC example: Scalar Types
-
--FILE--
<?php
function answer(): int {
@@ -8,6 +7,5 @@ function answer(): int {
}
var_dump(answer());
-
--EXPECTF--
int(42)