f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
13 lines
475 B
C
13 lines
475 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
struct foo; // expected-note 3 {{forward declaration of 'struct foo'}}
|
|
|
|
struct foo a(); // expected-note {{'a' declared here}}
|
|
void b(struct foo);
|
|
void c();
|
|
|
|
void func(void *p) {
|
|
a(); // expected-error{{calling 'a' with incomplete return type 'struct foo'}}
|
|
b(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
|
|
c(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
|
|
}
|