6601d02b23
From-SVN: r19916
10 lines
159 B
C
10 lines
159 B
C
/* { dg-do compile }*/
|
|
/* { dg-options "-O2" } */
|
|
|
|
char *const f(void)
|
|
{
|
|
char *const line = "/dev/ptyXX";
|
|
line[8] = 1;
|
|
return line;
|
|
}
|