#import expected a filename, found 'token'
The compiler expects to find “filename” or <filename> following the #import preprocessor directive. This error occurs when a token other than the filename is found.
For example:
#import “filename” //correct
#import <filename> //correct
#import filename //incorrect, error C2770
#import = //incorrect, error C2770