2021-06-03 03:40:07 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
|
2023-04-24 12:42:39 -05:00
|
|
|
// 'pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>('
|
2021-06-03 03:40:07 -05:00
|
|
|
pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>(T);
|