summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/legacy-const-generic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/legacy-const-generic.rs')
-rw-r--r--src/test/rustdoc/legacy-const-generic.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/rustdoc/legacy-const-generic.rs b/src/test/rustdoc/legacy-const-generic.rs
deleted file mode 100644
index 46a50e2fc..000000000
--- a/src/test/rustdoc/legacy-const-generic.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-#![crate_name = "foo"]
-#![feature(rustc_attrs)]
-
-// @has 'foo/fn.foo.html'
-// @has - '//*[@class="rust fn"]' 'fn foo(x: usize, const Y: usize, z: usize) -> [usize; 3]'
-#[rustc_legacy_const_generics(1)]
-pub fn foo<const Y: usize>(x: usize, z: usize) -> [usize; 3] {
- [x, Y, z]
-}
-
-// @has 'foo/fn.bar.html'
-// @has - '//*[@class="rust fn"]' 'fn bar(x: usize, const Y: usize, const Z: usize) -> [usize; 3]'
-#[rustc_legacy_const_generics(1, 2)]
-pub fn bar<const Y: usize, const Z: usize>(x: usize) -> [usize; 3] {
- [x, Y, z]
-}