blob: 328a6b75180b1f5d628a91ca2f764db5df771717 [file] [log] [blame]
fn func(pointer : ptr<private, vec4<f32>>) {
*(pointer) = vec4<f32>();
}
var<private> P : vec4<f32>;
@compute @workgroup_size(1)
fn main() {
func(&(P));
}