summaryrefslogtreecommitdiff
path: root/test/FrontendC/2004-06-08-OpaqueStructArg.c
blob: 5dfdd83c9e2a16cc3853f40e561b7daab56e3a7f (plain)
1
2
3
4
5
6
7
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null

   struct fu;
   void foo(struct fu);
   void bar() {
      foo;
   }