mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 21:46:49 +00:00
13 lines
219 B
Rust
13 lines
219 B
Rust
//@ revisions:cfail1
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
struct S<T, const N: usize>([T; N]);
|
|
|
|
fn f<T, const N: usize>(x: T) -> S<T, {N}> { panic!() }
|
|
|
|
fn main() {
|
|
f(0u8);
|
|
//[cfail1]~^ ERROR type annotations needed
|
|
}
|