// revisions: full min #![cfg_attr(full, feature(const_generics))] #![cfg_attr(full, allow(incomplete_features))] extern "C" { fn foo(); //~ ERROR foreign items may not have const parameters fn bar(_: T); //~ ERROR foreign items may not have type or const parameters } fn main() {}