blob: 0a07c99a26d341211a687adeffc4841fd465b9f9 [file]
//@ compile-flags: -Zunstable-options -Zoffload=Device -Clto=fat
#![feature(core_intrinsics)]
fn main() {
// args_ty is not a tuple
core::intrinsics::offload::<_, _, ()>(kernel_0, [1, 1, 1], [1, 1, 1], 0, 42);
//~^ ERROR `{integer}` is not a tuple
}
fn kernel_0() {}