mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 11:50:18 +00:00
8 lines
133 B
Rust
8 lines
133 B
Rust
type N = u32;
|
|
struct Foo<const M: usize>;
|
|
fn test<const N: usize>() -> Foo<N> { //~ ERROR type provided when
|
|
Foo
|
|
}
|
|
|
|
fn main() {}
|