forked from OSchip/llvm-project
10 lines
309 B
Common Lisp
10 lines
309 B
Common Lisp
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
|
|
|
|
__kernel void test() // expected-warning {{a function declaration without a prototype is deprecated in all versions of C}}
|
|
{
|
|
}
|
|
|
|
kernel void test1() // expected-warning {{a function declaration without a prototype is deprecated in all versions of C}}
|
|
{
|
|
}
|