1 // RUN: clang-cc -emit-llvm %s -o - | not grep opaque 2 3 enum teste1 test1f(void), (*test1)(void) = test1f; 4 struct tests2 test2f(), (*test2)() = test2f; 5 struct tests3; 6 void test3f(struct tests3), (*test3)(struct tests3) = test3f; 7 enum teste1 { TEST1 }; 8 struct tests2 { int x,y,z,a,b,c,d,e,f,g; }; 9 struct tests3 { float x; }; 10 11