bolt/deps/llvm-18.1.8/compiler-rt/test/sanitizer_common/TestCases/wcslen_test.c

11 lines
193 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang %s -O0 -o %t && %run %t 2>&1
#include <assert.h>
#include <wchar.h>
int main(int argc, char **argv) {
wchar_t x[] = L"Hello World!";
assert(wcslen(x) == 12);
return 0;
}