You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clangxx_msan -O0 -g %s -o %t && %run %t |
|
|
|
#include <libintl.h> |
|
#include <stdio.h> |
|
|
|
int main() { |
|
const char *td = textdomain("abcd"); |
|
if (td[0] == 0) { |
|
printf("Try read"); |
|
} |
|
return 0; |
|
}
|
|
|