OSDN Git Service

2009-01-10 Sebastian Pop <sebastian.pop@amd.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Wchar-subscripts.c
1 /* Copyright (C) 2005  Free Software Foundation.
2
3    by Gabriel Dos Reis  <gdr@integrable-solutions.net>  */
4
5 /* { dg-do compile }  */
6 /* { dg-options "-Wchar-subscripts" } */
7
8 int main(void)
9 {
10   int ary[256] = { 0 };
11   return ary['a'];
12 }