Fix slice const generic length display

This commit is contained in:
Guillaume Gomez 2019-06-07 00:58:32 +02:00
parent 8b36867093
commit 8f3753703c
2 changed files with 16 additions and 1 deletions

View file

@ -2768,7 +2768,10 @@ impl Clean<Type> for hir::Ty {
};
let length = match cx.tcx.const_eval(param_env.and(cid)) {
Ok(length) => print_const(cx, length),
Err(_) => "_".to_string(),
Err(_) => cx.sess()
.source_map()
.span_to_snippet(cx.tcx.def_span(def_id))
.unwrap_or_else(|_| "_".to_string()),
};
Array(box ty.clean(cx), length)
},

View file

@ -0,0 +1,12 @@
#![crate_name = "foo"]
#![feature(const_generics)]
pub trait Array {
type Item;
}
// @has foo/trait.Array.html
// @has - '//h3[@class="impl"]' 'impl<T, const N: usize> Array for [T; N]'
impl <T, const N: usize> Array for [T; N] {
type Item = T;
}