What is wrong with this line of code?
int temp = 1==1;
Nothing is wrong with it.
1==1 evaluates to a Boolean.
1==1 is invalid.
temp is a keyword.
temp