Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use crate::{Diagnostic, DiagnosticCode, DiagnosticsContext};

// Diagnostic: generic-default-refers-to-self
//
// This diagnostic is shown when a generic default refers to `Self`
pub(crate) fn generic_default_refers_to_self(
    ctx: &DiagnosticsContext<'_, '_>,
    d: &hir::GenericDefaultRefersToSelf,
) -> Diagnostic {
    Diagnostic::new_with_syntax_node_ptr(
        ctx,
        DiagnosticCode::RustcHardError("E0735"),
        "generic parameters cannot use `Self` in their defaults",
        d.segment.map(Into::into),
    )
    .stable()
}

#[cfg(test)]
mod tests {
    use crate::tests::check_diagnostics;

    #[test]
    fn plain_self() {
        check_diagnostics(
            r#"
struct Foo<T = Self>(T);
            // ^^^^ error: generic parameters cannot use `Self` in their defaults
"#,
        );
    }

    #[test]
    fn self_as_generic() {
        check_diagnostics(
            r#"
struct Wrapper<T>(T);
struct Foo<T = Wrapper<Self>>(T);
                    // ^^^^ error: generic parameters cannot use `Self` in their defaults
"#,
        );
    }
}