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