# 0125: Unexpected return type in function

Compiler found a function's [return type](/language/functions.md#return-from-function) that wasn't expected in this position.

Function's return type is a combination of words `optional`, `logical`, primitive types such as `Int`, or `Float`, and class names.

`logical` type can't be mixes with other types:

```pascal
function foo: logical, int // Error: unexpected return type int in function foo.
```

`optional` modifier must precede the return type:

```pascal
function foo: int, optional // Error: unexpected return type int in function foo.
```

You can't return types that are not known to the compiler:

```pascal
function foo: unknown // Error: Unexpected return type unknown in function foo.
```

#### Possible solutions:

* check your function definition and provide correct order of return types.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sannybuilder.com/troubleshooting/errors/0125.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
