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