blob: 0048895ac805183d202c55c01a7efb6d25634035 [file] [log] [blame]
Egor Churaev89831422016-12-23 14:55:49 +00001// RUN: %clang_cc1 %s -cl-std=CL2.0 -verify -pedantic -fsyntax-only
2
3void __attribute__((overloadable)) foo(queue_t, __local char *); // expected-note {{candidate function not viable: no known conversion from 'int' to 'queue_t' for 1st argument}} // expected-note {{candidate function}}
4void __attribute__((overloadable)) foo(queue_t, __local float *); // expected-note {{candidate function not viable: no known conversion from 'int' to 'queue_t' for 1st argument}} // expected-note {{candidate function}}
5
6void kernel ker(__local char *src1, __local float *src2, __global int *src3) {
7 queue_t q;
8 foo(q, src1);
9 foo(0, src2);
10 foo(q, src3); // expected-error {{call to 'foo' is ambiguous}}
11 foo(1, src3); // expected-error {{no matching function for call to 'foo'}}
12}