mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-03 12:17:38 +00:00
12 lines
197 B
Rust
12 lines
197 B
Rust
#![feature(const_for)]
|
|
#![feature(const_mut_refs)]
|
|
|
|
const _: () = {
|
|
for _ in 0..5 {}
|
|
//~^ error: cannot call
|
|
//~| error: cannot convert
|
|
//~| error: the trait bound
|
|
};
|
|
|
|
fn main() {}
|