YouCompleteMe/cpp/llvm/tools/clang/test/Sema/incomplete-call.c
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

14 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}}
}