xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-wchar.cpp (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1 -emit-llvm -g %s -o -| FileCheck %s
2 void foo() {
3 // CHECK: metadata !"wchar_t",
4   const wchar_t w = L'x';
5 }
6