aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ubsan/bounds-1.c
blob: 6f3cd2d53afddcab562dd3a6427fabf73b5b34e4 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-fsanitize=bounds" } */

struct T { int c; char d[]; } t = { 1, "abcdefg" };

int
baz (int i)
{
  return t.d[i];
}