Rollup merge of #89954 - GuillaumeGomez:legacy-const-generic-doc, r=Amanieu
Fix legacy_const_generic doc arguments display Fixes https://github.com/rust-lang/rust/issues/83167. cc ``@Amanieu``
This commit is contained in:
commit
444635df25
4 changed files with 57 additions and 1 deletions
16
src/test/rustdoc/legacy-const-generic.rs
Normal file
16
src/test/rustdoc/legacy-const-generic.rs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#![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]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue