> For the complete documentation index, see [llms.txt](https://docs.sannybuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sannybuilder.com/ru/troubleshooting/errors/0038.md).

# 0038: Неизвестный тип массива

Компилятор встретил элемент массива, [тип](/ru/coding/arrays.md#obshii-sintaksis) которого ему неизвестен.

**Возможные решения**: укажите один из известных типов: целое число (`i`), дробное число (`f`), строковый литерал (`s` или `v`):

```
0@(10@,4h) // ошибка, 'h' неизвестный тип
0@(10@,4i) // верно, 'i' известный тип
```
