blob: 34dceb4d844160bddf16cdd82fa4f7058eba3ff8 [file] [log] [blame]
// PR sanitizer/63913
// { dg-do compile }
// { dg-options "-fsanitize=bool -fnon-call-exceptions" }
struct B { B (); ~B (); };
double
foo (bool *x)
{
B b;
return *x;
}