blob: d72fad6561002ebc1220e883d36775422ed564c9 [file] [log] [blame]
/* PR middle-end/13448 */
/* { dg-options "-O3" } */
void funct (const int n)
{
n++; /* { dg-error "" } */
}
int main () {
funct (1);
return 0;
}