Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub trait ToNbt<T> {
fn new(val: T) -> Self;
}
impl dyn ToNbt<Self> {}
//~^ ERROR `Self` is not valid in the self type of an impl block
fn main() {}