mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00
8 lines
138 B
Rust
8 lines
138 B
Rust
fn foo<const X: u32>() {
|
|
fn bar() -> u32 {
|
|
X //~ ERROR can't use generic parameters from outer function
|
|
}
|
|
}
|
|
|
|
fn main() {}
|