Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
      2 
      3    struct fu;
      4    void foo(struct fu);
      5    void bar() {
      6       foo;
      7    }
      8