aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/ubsan/null-8.c
blob: 170377ee4d4fa2360fd486c367cf9cc0b262cc43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do run } */
/* { dg-options "-fsanitize=null -w" } */
/* { dg-shouldfail "ubsan" } */

struct S {
  int i;
};

int
main (void)
{
  struct S *s = 0;
  return s->i;
}

/* { dg-output "member access within null pointer of type 'struct S'(\n|\r\n|\r)" } */