error[E0308]: mismatched types
--> crates/validator/src/function_call.rs:39:28
|
39 | *return_type = func.return_type.clone();
| ------------ ^^^^^^^^^^^^^^^^^^^^^^^^ expected `Option<Type>`, found `Type`
|
help: try wrapping the expression in `Some`
|
39 | *return_type = Some(func.return_type.clone());
Error
return_typeisOption<Type>butfunc.return_typeisType. Need to wrap inSome().