1/* Origin: Joseph Myers <jsm28@cam.ac.uk>.
2
3   This tests for inconsistency in whether wide STRING_CSTs use the host
4   or the target endianness.  */
5
6extern void exit (int);
7extern void abort (void);
8
9int
10main (void)
11{
12  if (L"a" "b"[1] != L'b')
13    abort ();
14  exit (0);
15}
16