rust/tests/ui/const-generics/foreign-item-const-parameter.rs
2023-01-11 09:32:08 +00:00

8 lines
213 B
Rust

extern "C" {
fn foo<const X: usize>(); //~ ERROR foreign items may not have const parameters
fn bar<T, const X: usize>(_: T); //~ ERROR foreign items may not have type or const parameters
}
fn main() {}