Table of Contents

Variable "{0}" is already defined in this scope (AJTERR10014)

Product(s) Karo.NET Compiler

Description

A variable with the same name already exists in this scope.

a: number := 9;
a: number := 10;/*
^ A variable with this name was already specified in this scope
*/

How can I resolve this error?

Choose another name for the variable.