# 0113: Duplicate function declaration

Compiler found a duplicate [function declaration](https://docs.sannybuilder.com/language/functions#signature) in current scope. Each function should have a unique name and duplicates are not allowed:

```pascal
function foo
end

function foo // Error: Duplicate function declaration foo.
end
```

#### Possible solutions:

* rename the function to give it a unique name
