Description
before:
// hi
use me; // me
use self; // self
use this; // this
// bye
after:
// hi
// self
use me; // me
use this; // this
// bye
use self;
is indeed invalid but I think it's more useful for users to see the rustc error (
) than for the line to be entirely deleted.self
imports are only allowed within a { } list