summaryrefslogtreecommitdiff
path: root/tests/glsl-intrinsic/atomic/atomicErrorTest3.slang
blob: b21d27f6d979afeb8eac3668d266a101d777df7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):  -allow-glsl -stage compute -entry computeMain -target glsl -DTARGET_GLSL
//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):  -allow-glsl -stage compute -entry computeMain -target spirv -emit-spirv-directly -DTARGET_SPIRV
#version 430

// CHECK: error 20016

//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0], stride=4):name=one
layout(offset ) uniform atomic_uint one;

void computeMain()
{

}