1 // RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
2 // expected-no-diagnostics
12 RetGlob foo(const __global int *);
13 RetGen foo(const __generic int *);
16 __global int *ArgGlob;
17 __generic int *ArgGen;
19 RetGlob TestGlob = foo(ArgGlob);
20 RetGen TestGen = foo(ArgGen);
21 TestGen = foo(ArgLoc);