mirror of
https://github.com/php/frankenphp.git
synced 2026-03-24 00:52:11 +01:00
10 lines
205 B
Go
10 lines
205 B
Go
package testintegration
|
|
|
|
// #include <Zend/zend_types.h>
|
|
import "C"
|
|
|
|
// export_php:function invalid_return_type(string $str): unsupported_type
|
|
func invalid_return_type(s *C.zend_string) int {
|
|
return 42
|
|
}
|