[Clang] replace 'bitfield' with 'bit-field' for consistency (#117881)
[llvm-project.git] / clang / test / CodeGenCXX / incomplete-types.cpp
blob802ed4628d9e55e643e9dcc486816476c729368e
1 // RUN: %clang_cc1 %s -emit-llvm-only -verify
2 // expected-no-diagnostics
3 // PR5489
5 template<typename E>
6 struct Bar {
7 int x_;
8 };
10 static struct Bar<int> bar[1] = {
11 { 0 }
16 namespace incomplete_type_refs {
17 struct A;
18 extern A g[];
19 void foo(A*);
20 void f(void) {
21 foo(g); // Reference to array with unknown element type.
24 struct A { // define the element type.
25 int a,b,c;
28 A *f2() {
29 return &g[1];
34 namespace PR10395 {
35 struct T;
36 extern T x[];
37 T* f() { return x; }
40 namespace PR10384 {
41 struct X;
42 extern X x[1];
43 X* f() { return x; }