2021-06-03 09:40:07 +01:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2023-01-30 11:05:12 -07:00
|
|
|
// @has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
|
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);
|