// Compile: cc -std=c23 test_7_27_wchar.c
#include <wchar.h>
#include <assert.h>

int main(void){
  const wchar_t *w = L"hi";
  assert(wcslen(w) == 2);
  return 0;
}
