1// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s | FileCheck %s
2// CHECK: ModuleID
3// CHECK-NOT: opaque
4// CHECK-LABEL: define void @f0
5
6enum teste1 test1f(void), (*test1)(void) = test1f;
7struct tests2 test2f(), (*test2)() = test2f;
8struct tests3;
9void test3f(struct tests3), (*test3)(struct tests3) = test3f;
10enum teste1 { TEST1 };
11struct tests2 { int x,y,z,a,b,c,d,e,f,g; };
12struct tests3 { float x; };
13
14void f0() {}
15