Error E0047 Code block contains both macro and declared symb

Moderator: Enrico Maria Giordano

Post Reply
User avatar
mauri.menabue
Posts: 89
Joined: Thu Apr 17, 2008 2:38 pm

Error E0047 Code block contains both macro and declared symb

Post by mauri.menabue »

Salve a tutti

Qualcuno ha risolto il seguente errore di compilazione in xHarbour :
Error E0047 Code block contains both macro and declared symbol
ho tentato di riportare la riga che genera l'errore in un piccolo programma di prova

DbEval( {|| nRet ++ }, {|| .not. Deleted() } )

e li la riga e' compilata regolarmente.

Con Harbour non ho problemi.

Grazie
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Re: Error E0047 Code block contains both macro and declared symb

Post by Enrico Maria Giordano »

Questo compila regolarmente:

Code: Select all

FUNCTION MAIN()

    LOCAL nRet

    DbEval( {|| nRet ++ }, {|| .not. Deleted() } )

    RETURN NIL
Come faccio a riprodurre il problema? Nessuna delle mie applicazioni dà quell'errore compilandole. Dev'essere un caso particolare ma senza poterlo riprodurre non so che fare.

EMG
Post Reply