You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
227 B

// RUN: %clang_cc1 -fsyntax-only -verify %s
struct A {};
struct B : virtual A {};
void foo() {
(void)static_cast<A&>(*(B *)0); // expected-warning {{binding dereferenced null pointer to reference has undefined behavior}}
}