Currently there was re-declaration error if error was encountered in the same line (The recovery support acted only if this type of error was encountered in the first line of the program and not in subsequent lines )
Eg:
clang-repl> int i=9; clang-repl> int j=9; err; input_line_3:1:5: error: redefinition of 'j' int j = 9;