1// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only 2 3__kernel void test() // expected-warning {{a function declaration without a prototype is deprecated in all versions of C}} 4{ 5} 6 7kernel void test1() // expected-warning {{a function declaration without a prototype is deprecated in all versions of C}} 8{ 9} 10