aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.apple/Wfour-char-constants-1.c
blob: 536396454b75ea4c3902eebee4101c41dca9a036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* APPLE LOCAL file -Wfour-char-constants */
/* We warn by default on Darwin, so no specific option needed.  */

/* { dg-do compile { target "*-*-darwin*" } } */
/* { dg-options "" } */

int glob1 = 'a';
int glob2 = 'ab';	/* { dg-warning "multi-character character constant" } */
int glob3 = 'abc';	/* { dg-warning "multi-character character constant" } */
int glob4 = 'abcd';     /* say nothing */
int glob5 = 'abcde';	/* { dg-warning "character constant too long" } */