I’m working on an iPhone app and got this strange things happening.
I have a property declared in my .h file:
BOOL shouldProcessVenueListRequest;
@property(nonatomic, assign) BOOL shouldProcessVenueListRequest;
So far, so good. Then in my implementation .m file:
@synthesize shouldProcessVenueListRequest;
This works perfectly well for about 20 other properties, but for this one, I’m getting an error in the implementation: “Parse Issue – Expected ‘;’ after @synthesize” – and the error pointer is in the middle of the variable name – see the image.

I tried removing and re-adding this property manually; tried copy/paste variable name from .h – nothing worked. I’m totally confused about this now. Any help is greatly appreciated.
Thanks to all who replied. It turned out to be an issue with the XCode rather than anything wrong with my code. Apparently, when I was typing the code in, I was interrupted half-way into typing, so that error message was valid (at the time). Then, about an hour later I came back to it and completed typing – but for some reason XCode was stuck on this error message.
I did ‘clean’, then ‘build’ – didn’t help. So I did ‘clean’ again and then closed project. When I reopened the project and did ‘build’ again – the error wasn’t there any more.