aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/asan/pr62140-2.c
blob: 0bb2563abac7df1556cb0469cc8fc8a6bb8544ac (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-w -fpermissive" } */

int strlen (const char *p);

int f (char *p)
{
    int x = strlen (p);
    return x;
}