[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / compiler-rt / test / sanitizer_common / TestCases / wcslen_test.c
blob28efd76594081705c5ce5840f4de5ae0cb6c227c
1 // RUN: %clang %s -O0 -o %t && %run %t 2>&1
3 #include <assert.h>
4 #include <wchar.h>
6 int main(int argc, char **argv) {
7 wchar_t x[] = L"Hello World!";
8 assert(wcslen(x) == 12);
9 return 0;