blob: 659a5f2a07ec7fe70861b87e72df476e585492fb [file] [log] [blame]
/* { 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 "load of null pointer of type 'struct S \\*'" } */