Sign in
chromium
/
external
/
github.com
/
llvm-mirror
/
clang
/
327f79bc69360fadf014aecc5e81bc706f9693b6
/
.
/
test
/
SemaOpenCL
/
array-parameters.cl
blob: 200acacfad4c795cd38ad5f2ddf62695aeabc396 [
file
] [
log
] [
blame
]
//
RUN
:
%
clang_cc1
%
s -verify -pedantic -fsyntax-only
//
expected-no-diagnostics
kernel void foo
(
global int a
[],
local int b
[],
constant int c
[
4
]
)
{
}
void bar
(
global int a
[],
local int b
[],
constant int c
[
4
],
int d
[]
)
{
}