Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:Bottom

721 struct Bottom { constexpr Bottom() {} };
722 struct Base : Bottom {
727 struct Base2 : Bottom {
754 constexpr Bottom &bot1 = (Base&)derived;
755 constexpr Bottom &bot2 = (Base2&)derived;
758 constexpr Bottom *pb1 = (Base*)&derived;
759 constexpr Bottom *pb2 = (Base2*)&derived;
781 static_assert((Bottom*)nullB == 0, "");
783 static_assert((void*)(Bottom*)nullB == (void*)(Derived*)nullB, "");