diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:58 +0000 |
commit | a4b7ed7a42c716ab9f05e351f003d589124fd55d (patch) | |
tree | b620cd3f223850b28716e474e80c58059dca5dd4 /src/test/rustdoc/elided-lifetime.rs | |
parent | Adding upstream version 1.67.1+dfsg1. (diff) | |
download | rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip |
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/rustdoc/elided-lifetime.rs')
-rw-r--r-- | src/test/rustdoc/elided-lifetime.rs | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/test/rustdoc/elided-lifetime.rs b/src/test/rustdoc/elided-lifetime.rs deleted file mode 100644 index 006132ef8..000000000 --- a/src/test/rustdoc/elided-lifetime.rs +++ /dev/null @@ -1,43 +0,0 @@ -// aux-build:elided-lifetime.rs -// -// rust-lang/rust#75225 -// -// Since Rust 2018 we encourage writing out <'_> explicitly to make it clear -// that borrowing is occurring. Make sure rustdoc is following the same idiom. - -#![crate_name = "foo"] - -pub struct Ref<'a>(&'a u32); -type ARef<'a> = Ref<'a>; - -// @has foo/fn.test1.html -// @matchesraw - "Ref</a><'_>" -pub fn test1(a: &u32) -> Ref { - Ref(a) -} - -// @has foo/fn.test2.html -// @matchesraw - "Ref</a><'_>" -pub fn test2(a: &u32) -> Ref<'_> { - Ref(a) -} - -// @has foo/fn.test3.html -// @matchesraw - "Ref</a><'_>" -pub fn test3(a: &u32) -> ARef { - Ref(a) -} - -// @has foo/fn.test4.html -// @matchesraw - "Ref</a><'_>" -pub fn test4(a: &u32) -> ARef<'_> { - Ref(a) -} - -// Ensure external paths in inlined docs also display elided lifetime -// @has foo/bar/fn.test5.html -// @matchesraw - "Ref</a><'_>" -// @has foo/bar/fn.test6.html -// @matchesraw - "Ref</a><'_>" -#[doc(inline)] -pub extern crate bar; |