xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-wchar.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 // RUN: %clang_cc1 -emit-llvm -g %s -o -| FileCheck %s
foo()2 void foo() {
3 // CHECK:  !"0x24\00wchar_t\00{{.*}}", null, null} ; [ DW_TAG_base_type ] [wchar_t]
4   const wchar_t w = L'x';
5 }
6