rust/tests/ui/const-generics/foreign-item-const-parameter.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
213 B
Rust
Raw Normal View History

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() {}