Bars is a built in function in mql5 that returns an integer. So you should use Bars() for instance you could use:
if( Bars(_Symbol,PERIOD_CURRENT) < 3 )
if you want to define a variable with its name you could define it by lower case for instance :
int bars ;