mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 16:09:46 -04:00
6 lines
180 B
C++
6 lines
180 B
C++
// RUN: %clang_cc1 -emit-llvm -g %s -o -| FileCheck %s
|
|
void foo() {
|
|
// CHECK: !"0x24\00wchar_t\00{{.*}}", null, null} ; [ DW_TAG_base_type ] [wchar_t]
|
|
const wchar_t w = L'x';
|
|
}
|