blob: 3c6f31615df6c58cf737e50db74f1f5ac46fffa5 [file] [log] [blame]
Devang Patelf60dca32011-09-14 23:14:14 +00001// RUN: %clang_cc1 -S -std=c++0x -masm-verbose -g %s -o -| FileCheck %s
2
3//CHECK: DW_TAG_unspecified_type
4//CHECK-NEXT: "nullptr_t"
5
6void foo() {
7 decltype(nullptr) t = 0;
8 }