So with the premises
$(A \Rightarrow B) \Rightarrow C$
$B$
It is easy to prove $C$ in the Fitch method, as in the proof below proof
Therefore I should be able to prove it using a resolution proof
$(A \Rightarrow B) \Rightarrow C$
$\neg (A \Rightarrow B) \lor C$
$\neg (\neg A \lor B) \lor C$
$(\neg \neg A \land \neg B) \lor C$
$(A \land \neg B) \lor C$
$(A \lor C) \land (\neg B \lor C)$
1. $\{A,C\}$
2. $\{\neg B, C\}$
3. $\{B\}$
4. $\{\neg C\}$
5. $\{A\}$ 1, 4
6. $\{C\}$ 2, 3
7. $\{\}$ 4, 6
So we're left with:
$\{A\}$
$\{\}$
But there is no way to get rid of the $A$. What am I doing wrong? Or is the empty set mean we've proved it even though the $A$ is still there?