mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
8 lines
134 B
Rust
8 lines
134 B
Rust
fn foo<const X: u32>() {
|
|
fn bar() -> u32 {
|
|
X //~ ERROR can't use generic parameters from outer item
|
|
}
|
|
}
|
|
|
|
fn main() {}
|