# 0115: Invalid variable name. Name is reserved by another class or function

Compiler found a [variable](/language/data-types/variables.md) name that matches a reserved word, or another [class](/language/instructions/classes.md) or [function](/language/functions.md). Each variable must be unique.

List of available class names can be found in current [edit mode](/edit-modes.md)'s classes.db file.

List of other reserved words can be found in compiler.ini located in Sanny's data directory.

```cpp
int car // Error: car is defined in classes.db
int inc // Error: inc is defined in compiler.ini
```

#### Possible solutions:

* rename the variable to give it a unique name


---

# 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/0115.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.
