Clang Project

clang_source_code/test/CodeGenCXX/debug-info-wchar.cpp
1// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o -| FileCheck %s
2void foo() {
3// CHECK: !DIBasicType(name: "wchar_t"
4  const wchar_t w = L'x';
5}
6