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