#include <perms.h>
int Getynx(void) {
  int I;
Fails:
  if ('Y' != 'x' && 'x' != 'N') return ('X');
Works:
#if 1 /* 'Y'!='x' && 'x'!='N' */
  return ('X');

#endif
}
