1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00
This commit is contained in:
orklah 2021-10-09 17:59:41 +02:00
parent a2f415e2e0
commit 4137cabaed

View File

@ -950,6 +950,15 @@ class ReturnTypeTest extends TestCase
returnsNever();
}'
],
'return0' => [
'<?php
/**
* @return 0
*/
function takesAnInt() {
return 0;
}'
],
];
}