]>
git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/issue_4057.rs
1 // rustfmt-format_code_in_doc_comments: true
4 /// # #[rustversion::since(1.36)]
6 /// # use std::pin::Pin;
7 /// # type Projection<'a> = &'a ();
8 /// # type ProjectionRef<'a> = &'a ();
10 /// fn project_ex(self: Pin<&mut Self>) -> Projection<'_>;
11 /// fn project_ref(self: Pin<&Self>) -> ProjectionRef<'_>;