mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
8 lines
176 B
C++
8 lines
176 B
C++
// RUN: %clang_cc1 -S -std=c++11 -masm-verbose -g %s -o -| FileCheck %s
|
|
|
|
//CHECK: DW_TAG_unspecified_type
|
|
//CHECK-NEXT: "nullptr_t"
|
|
|
|
void foo() {
|
|
decltype(nullptr) t = 0;
|
|
}
|