summary refs log tree commit diff
path: root/src/test/rustdoc/const-generics/const-generic-defaults.rs
blob: efe35bf7aa4422e1b274ba49e09d8a5ae930bc08 (plain)
1
2
3
4
5
6
#![crate_name = "foo"]
#![feature(const_generics_defaults)]

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