blob: fe6ea641d0145042b2399760f30c9294ed907b6a [file] [log] [blame]
/* APPLE LOCAL file nested functions 4258406 */
/* Nested functions are not supported by default on darwin. */
/* { dg-compile } */
/* { dg-options "" } */
void foo(int i, int j)
{
void bar (int k)
{ /* { dg-error "nested functions" } */
k = j;
}
}