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