blob: f707f266fe246b5adbcaa60972ca7679f5f1cee6 [file] [log] [blame]
#include <stdio.h>
int protected = 42;
extern int *get_protected_ptr (void);
void
test()
{
if (&protected == get_protected_ptr ())
printf ("PASS\n");
}