Complete #![recursion_limit = "N"]
over #![recursion_limit = N]
This commit is contained in:
parent
c16e6474f9
commit
1f238b3bb5
@ -272,7 +272,11 @@ const ATTRIBUTES: &[AttrCompletion] = &[
|
|||||||
attr("proc_macro", None, None),
|
attr("proc_macro", None, None),
|
||||||
attr("proc_macro_attribute", None, None),
|
attr("proc_macro_attribute", None, None),
|
||||||
attr("proc_macro_derive(…)", Some("proc_macro_derive"), Some("proc_macro_derive(${0:Trait})")),
|
attr("proc_macro_derive(…)", Some("proc_macro_derive"), Some("proc_macro_derive(${0:Trait})")),
|
||||||
attr("recursion_limit = …", Some("recursion_limit"), Some("recursion_limit = ${0:128}"))
|
attr(
|
||||||
|
r#"recursion_limit = "…""#,
|
||||||
|
Some("recursion_limit"),
|
||||||
|
Some(r#"recursion_limit = "${0:128}""#),
|
||||||
|
)
|
||||||
.prefer_inner(),
|
.prefer_inner(),
|
||||||
attr("repr(…)", Some("repr"), Some("repr(${0:C})")),
|
attr("repr(…)", Some("repr"), Some("repr(${0:C})")),
|
||||||
attr("should_panic", Some("should_panic"), Some(r#"should_panic"#)),
|
attr("should_panic", Some("should_panic"), Some(r#"should_panic"#)),
|
||||||
|
@ -75,7 +75,7 @@ fn attr_on_source_file() {
|
|||||||
at no_implicit_prelude
|
at no_implicit_prelude
|
||||||
at no_main
|
at no_main
|
||||||
at no_std
|
at no_std
|
||||||
at recursion_limit = …
|
at recursion_limit = "…"
|
||||||
at type_length_limit = …
|
at type_length_limit = …
|
||||||
at windows_subsystem = "…"
|
at windows_subsystem = "…"
|
||||||
"#]],
|
"#]],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user