xref: /llvm-project/clang/test/CodeGenCXX/debug-info-nullptr.cpp (revision 3459ce2e5ebbabb8d4dde3809da50dc89e1b0b35)
1 // RUN: %clang_cc1 -emit-llvm -std=c++11 -debug-info-kind=limited %s -o -| FileCheck %s
2 
foo()3 void foo() {
4   decltype(nullptr) t = 0;
5 }
6 
7 // CHECK: !DIBasicType(tag: DW_TAG_unspecified_type, name: "decltype(nullptr)")
8