Consultor Eletrônico



Kbase 18792: Error 374 using '~173' in 4GL source code
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   08/12/2008
Status: Verified

SYMPTOM(s):

Error: ** Unmatched curly braces ({}) found in procedure. (374)

Using '~173' (octal 173) in the source code

CAUSE:

Octal values are converted by the preprocessor, before compilation, therefore '~173' becomes '{', which does not compile because there is no closing brace.

FIX:

To workaround this problem, use '~{' or CHR(123) instead of '~173'.