mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
37 lines
1.0 KiB
Rust
37 lines
1.0 KiB
Rust
//@ revisions: full min
|
|
#![cfg_attr(full, feature(adt_const_params))]
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
|
|
|
struct Test(*const usize);
|
|
|
|
type PassArg = ();
|
|
|
|
unsafe extern "C" fn pass(args: PassArg) {
|
|
println!("Hello, world!");
|
|
}
|
|
|
|
impl Test {
|
|
pub fn call_me<Args: Sized, const IDX: usize, const FN: unsafe extern "C" fn(Args)>(&self) {
|
|
//~^ ERROR: the type of const parameters must not depend on other generic parameters
|
|
//[min]~^^ ERROR: using function pointers as const generic parameters is forbidden
|
|
self.0 = Self::trampiline::<Args, IDX, FN> as _
|
|
}
|
|
|
|
unsafe extern "C" fn trampiline<
|
|
Args: Sized,
|
|
const IDX: usize,
|
|
const FN: unsafe extern "C" fn(Args),
|
|
//~^ ERROR: the type of const parameters must not depend on other generic parameters
|
|
//[min]~^^ ERROR: using function pointers as const generic parameters is forbidden
|
|
>(
|
|
args: Args,
|
|
) {
|
|
FN(args)
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x = Test(std::ptr::null());
|
|
x.call_me::<PassArg, 30, pass>()
|
|
}
|