2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2010-03-10 19:27:22 +08:00
|
|
|
struct A; // expected-note 14 {{forward declaration of 'A'}}
|
2009-10-10 07:58:25 +08:00
|
|
|
|
|
|
|
A f(); // expected-note {{note: 'f' declared here}}
|
|
|
|
|
|
|
|
struct B {
|
2009-10-10 08:06:20 +08:00
|
|
|
A f(); // expected-note {{'f' declared here}}
|
2009-10-14 05:49:31 +08:00
|
|
|
A operator()(); // expected-note 2 {{'operator()' declared here}}
|
2009-10-14 05:02:07 +08:00
|
|
|
operator A(); // expected-note {{'operator A' declared here}}
|
2009-10-14 05:19:37 +08:00
|
|
|
A operator!(); // expected-note 2 {{'operator!' declared here}}
|
2009-10-14 05:49:31 +08:00
|
|
|
A operator++(int); // expected-note {{'operator++' declared here}}
|
2009-10-14 06:22:09 +08:00
|
|
|
A operator[](int); // expected-note {{'operator[]' declared here}}
|
2009-10-14 06:43:21 +08:00
|
|
|
A operator+(int); // expected-note {{'operator+' declared here}}
|
|
|
|
A operator->(); // expected-note {{'operator->' declared here}}
|
2009-10-10 07:58:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void g() {
|
2010-03-10 19:27:22 +08:00
|
|
|
f(); // expected-error {{calling 'f' with incomplete return type 'A'}}
|
2009-10-10 07:58:25 +08:00
|
|
|
|
|
|
|
typedef A (*Func)();
|
|
|
|
Func fp;
|
2010-03-10 19:27:22 +08:00
|
|
|
fp(); // expected-error {{calling function with incomplete return type 'A'}}
|
|
|
|
((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}}
|
2009-10-10 08:06:20 +08:00
|
|
|
|
|
|
|
B b;
|
2010-03-10 19:27:22 +08:00
|
|
|
b.f(); // expected-error {{calling 'f' with incomplete return type 'A'}}
|
2009-10-14 05:02:07 +08:00
|
|
|
|
2010-03-10 19:27:22 +08:00
|
|
|
b.operator()(); // expected-error {{calling 'operator()' with incomplete return type 'A'}}
|
|
|
|
b.operator A(); // expected-error {{calling 'operator A' with incomplete return type 'A'}}
|
|
|
|
b.operator!(); // expected-error {{calling 'operator!' with incomplete return type 'A'}}
|
2009-10-14 05:19:37 +08:00
|
|
|
|
2010-03-10 19:27:22 +08:00
|
|
|
!b; // expected-error {{calling 'operator!' with incomplete return type 'A'}}
|
|
|
|
b(); // expected-error {{calling 'operator()' with incomplete return type 'A'}}
|
|
|
|
b++; // expected-error {{calling 'operator++' with incomplete return type 'A'}}
|
|
|
|
b[0]; // expected-error {{calling 'operator[]' with incomplete return type 'A'}}
|
|
|
|
b + 1; // expected-error {{calling 'operator+' with incomplete return type 'A'}}
|
|
|
|
b->f(); // expected-error {{calling 'operator->' with incomplete return type 'A'}}
|
2009-10-15 08:41:48 +08:00
|
|
|
|
|
|
|
A (B::*mfp)() = 0;
|
2010-03-10 19:27:22 +08:00
|
|
|
(b.*mfp)(); // expected-error {{calling function with incomplete return type 'A'}}
|
2009-10-15 08:41:48 +08:00
|
|
|
|
2009-10-10 07:58:25 +08:00
|
|
|
}
|
2009-10-21 14:18:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
struct C; // expected-note{{forward declaration}}
|
|
|
|
|
|
|
|
void test_incomplete_object_call(C& c) {
|
|
|
|
c(); // expected-error{{incomplete type in call to object of type}}
|
|
|
|
}
|