summary refs log tree commit diff
path: root/src/test/ui/const-generics/foreign-item-const-parameter.rs
blob: 41113780de32e4550d866d3c5f86f84f36bd1cca (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete

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