blob: 2c63b6d6abe81e32682d2e6f80dfaf68ba2164c2 [file]
//@ compile-flags: -Zunstable-options -Zoffload=Device -Clto=fat
#![feature(gpu_offload)]
fn main() {
// args_ty is not a tuple
core::offload::offload! { kernel = kernel_0, args = 42 }
//~^ ERROR `{integer}` is not a tuple
}
fn kernel_0() {}