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