blob: 588dc5f3c3993924e9d7a695ec4e911641708482 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -S -std=c++11 -masm-verbose -g %s -o -| FileCheck %s
Devang Patelf60dca32011-09-14 23:14:14 +00002
3//CHECK: DW_TAG_unspecified_type
4//CHECK-NEXT: "nullptr_t"
5
6void foo() {
7 decltype(nullptr) t = 0;
8 }