Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -emit-llvm-only -std=c++11 -g %s
      2 
      3 namespace PR9414 {
      4   int f() {
      5     auto x = 0;
      6     return x;
      7   }
      8 }
      9