1 /* Test whether the dynamic string token expansion can handle $ signs which do
2    not start one of the recognized keywords.  */
3 
4 #include <dlfcn.h>
5 
main(void)6 int main (void)
7 {
8   dlopen ("gnu-gettext-GetURL$1", RTLD_GLOBAL | RTLD_LAZY);
9   dlopen ("gnu-gettext-GetURL${1", RTLD_GLOBAL | RTLD_LAZY);
10   return 0;
11 }
12