mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 13:42:13 +00:00
8 lines
256 B
C++
8 lines
256 B
C++
// RUN: %clang_cc1 -emit-llvm -std=c++11 -g %s -o -| FileCheck %s
|
|
|
|
void foo() {
|
|
decltype(nullptr) t = 0;
|
|
}
|
|
|
|
// CHECK: !13 = metadata !{i32 720955, null, metadata !"nullptr_t", null, i32 0, i64 0, i64 0, i64 0, i32 0, i32 0} ; [ DW_TAG_unspecified_type ]
|