]> git.proxmox.com Git - rustc.git/blobdiff - src/test/rustdoc/array-links.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / src / test / rustdoc / array-links.rs
diff --git a/src/test/rustdoc/array-links.rs b/src/test/rustdoc/array-links.rs
deleted file mode 100644 (file)
index 07f92ac..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#![crate_name = "foo"]
-#![no_std]
-
-pub struct MyBox<T: ?Sized>(*const T);
-
-// @has 'foo/fn.alpha.html'
-// @snapshot link_slice_u32 - '//pre[@class="rust fn"]/code'
-pub fn alpha() -> &'static [u32; 1] {
-    loop {}
-}
-
-// @has 'foo/fn.beta.html'
-// @snapshot link_slice_generic - '//pre[@class="rust fn"]/code'
-pub fn beta<T>() -> &'static [T; 1] {
-    loop {}
-}
-
-// @has 'foo/fn.gamma.html'
-// @snapshot link_box_u32 - '//pre[@class="rust fn"]/code'
-pub fn gamma() -> MyBox<[u32; 1]> {
-    loop {}
-}
-
-// @has 'foo/fn.delta.html'
-// @snapshot link_box_generic - '//pre[@class="rust fn"]/code'
-pub fn delta<T>() -> MyBox<[T; 1]> {
-    loop {}
-}