blob: 14de21b2374a2dfabef9c2c94882bfaca693b100 [file] [edit]
//@ 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, -1, 42);
//~^ ERROR `{integer}` is not a tuple
}
fn kernel_0() {}