Lines Matching defs:Bottom
891 struct Bottom { constexpr Bottom() {} };
892 struct Base : Bottom {
897 struct Base2 : Bottom {
924 constexpr Bottom &bot1 = (Base&)derived;
925 constexpr Bottom &bot2 = (Base2&)derived;
928 constexpr Bottom *pb1 = (Base*)&derived;
929 constexpr Bottom *pb2 = (Base2*)&derived;
951 static_assert((Bottom*)nullB == 0, "");
953 static_assert((void*)(Bottom*)nullB1 == (void*)(Derived*)nullB1, "");