Table of Contents

No corresponding right parenthesis found for the specified left parenthesis or left call parenthesis (AJTERR10005)

Product(s) Karo.NET compiler

Description

For the specified left parenthesis was no corresponding right parenthesis found.

How can I resolve this error?

Fix the syntax and add a right parenthesis at the right position.

For instance, in this example code a right parenthesis is missing.

io:out(56 * (10 + 9);
//          ^ This parenthesis has no match in the statement.

This could be fixed like this:

io:out(56 * (10 + 9));
//                 ^ Right parenthesis added