blob: 6534bcf5ce64c91bad8eb7c288860f9209e1f5fe (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
fn foo<const X: u32>() {
fn bar() -> u32 {
X //~ ERROR can't use generic parameters from outer function
}
}
fn main() {}
|