That is an intentional error indicating that the two lines cannot be executed:
insert into TheStuff (a,b) values('test','DEF')
GO
insert into TheStuff (a,b) values('test','DEF')
while these two can:
insert into TheStuff (a,b) values('test',null)
GO
insert into TheStuff (a,b) values('test',null)