summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/nullptr.cpp
blob: 31bd47522ed4466fb44b5d0e1e29a27abdb2e76d (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -std=c++0x  %s -emit-llvm -o %t

int* a = nullptr;

void f() {
  int* a = nullptr;
}