• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm-only -std=c++0x -g %s
2 
3 namespace PR9414 {
f()4   int f() {
5     auto x = 0;
6     return x;
7   }
8 }
9