Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f60dca355d3e754b7a51726c7455d1e7583a65ba
/
.
/
test
/
CodeGenCXX
/
debug-info-nullptr.cpp
blob: 3c6f31615df6c58cf737e50db74f1f5ac46fffa5 [
file
] [
log
] [
blame
]
Devang Patel
f60dca3
2011-09-14 23:14:14 +0000
[
diff
] [
blame^
]
1
// 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
6
void
foo
()
{
7
decltype
(
nullptr
)
t
=
0
;
8
}