1// RUN: %clangxx_msan -m64 -O0 -g %s -o %t && %run %t
2
3#include <libintl.h>
4#include <stdio.h>
5
6int main() {
7  const char *td = textdomain("abcd");
8  if (td[0] == 0) {
9    printf("Try read");
10  }
11  return 0;
12}
13