summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/const-generics/const-generic-defaults.rs
blob: f781c6a62f24b4b397e6594e9b8073880052abe4 (plain)
1
2
3
4
5
#![crate_name = "foo"]

// @has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
//      'pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>(_);'
pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>(T);