blob: 487cb28399a32fe4b58a70e56546e9e02b652cd4 (
plain)
1
2
3
4
5
6
|
// RUN: %clang_cc1 -fsyntax-only -verify -Wmissing-prototypes %s
void f() { } // expected-warning {{no previous prototype for function 'f'}}
// Don't warn about kernel functions.
kernel void g() { }
|