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