aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/arg-invalid.c
blob: 03ce00acc451626b05173b26a9d4a7094184d4a4 (plain)
1
2
3
4
5
6
// RUN: clang %s -fsyntax-only -verify

void bar (void *); 
void f11 (z)       // expected-error {{may not have 'void' type}}
void z; 
{ bar (&z); }