summaryrefslogtreecommitdiff
path: root/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/p9.cpp
blob: 491ab17802e06328677271545d36b8cc6cb48b75 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -verify %s

struct S; // expected-note 2{{forward declaration of 'S'}}
extern S a;
extern S f(); // expected-note {{'f' declared here}}
extern void g(S a);

void h() {
  g(a); // expected-error {{argument type 'S' is incomplete}}
  f(); // expected-error {{calling 'f' with incomplete return type 'S'}}
}