2021-06-03 09:40:07 +01:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html '//pre[@class="rust struct"]' \
|
2022-07-19 03:46:32 +03:00
|
|
|
// 'pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>(_);'
|
2021-06-03 09:40:07 +01:00
|
|
|
pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>(T);
|