• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3    struct fu;
4    void foo(struct fu);
bar()5    void bar() {
6       foo;
7    }
8