+ 1
The constructor is part of the book struct, so the curly braces on line 14 has to go to line 20.
The field title and the argument title are the same. The compiler cannot differ these. So you have to write.
this.title = title;
https://code.sololearn.com/ca7a1592A8a1/?ref=app



