hanchenye-llvm-project/clang/test/CodeGenCXX/debug-info-wchar.cpp

6 lines
157 B
C++

// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o -| FileCheck %s
void foo() {
// CHECK: !DIBasicType(name: "wchar_t"
const wchar_t w = L'x';
}