# 0108: Unsupported argument type

Compiler expected a known type of the parameter in the function signature, but provided name is not known.

E.g. in

```pascal
function foo(value: something)
```

`something` might not be a valid type. Compiler expects `int`, `float`, `string` or a [class](https://docs.sannybuilder.com/language/instructions/classes) name (e.g. `Player`).

#### Possible solution:

* use a valid type name. Check [Function](https://docs.sannybuilder.com/language/functions#signature) documentation for more information.
