blob: 26dc22c6dd9e5c64f97ae138e9b076803dea9670 [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-fsanitize=null -w" } */
/* { dg-shouldfail "ubsan" } */
int
main (void)
{
int *p = 0;
return *p;
}
/* { dg-output "load of null pointer of type 'int'" } */