Identifier 'strcat2' was not declared

Discuss about beta versions of mikroPascal compiler.
Post Reply
Author
Message
yo2lio
Posts: 1878
Joined: 19 Sep 2006 12:57
Location: Romania, Arad City
Contact:

Identifier 'strcat2' was not declared

#1 Post by yo2lio » 11 Jul 2007 17:36

Hi,

This program work OK with MP 6.02 :

Code: Select all

program test;

var test : string[20];

begin
  test := 'test string';
  test := test + 'C';
end.
But with BETA 4 I got this : 7:18 E-3 Identifier 'strcat2' was not declared test.ppas

Work around :

Code: Select all

program test;

var test : string[20];

begin
  test := 'test string';
  Strcat(test,'C');
end.
??

Best regards, Florin Medrea.

User avatar
zristic
mikroElektronika team
Posts: 6608
Joined: 03 Aug 2004 12:59
Contact:

Re: Identifier 'strcat2' was not declared

#2 Post by zristic » 11 Jul 2007 18:24

Same old problem. I hate it...

Thanks for reporting.

Post Reply

Return to “mikroPascal Beta testing”