summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/string-literal.c
blob: a4011938c10666beb2ea8a787307baeb7598cc95 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -emit-llvm %s -o -

int main() {
  char a[10] = "abc";

  void *foo = L"AB";
}