summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-23305.rs
blob: 6d7fe7c50a230a80447186611e7a8c0b0d56e904 (plain)
1
2
3
4
5
6
7
8
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() {}