This came up in #50636 ```python In [9]: Series([], dtype='bool').index Out[9]: RangeIndex(start=0, stop=0, step=1) In [10]: Series([], dtype='bool')._get_bool_data().index Out[10]: NumericIndex([], dtype='int64') ``` cc @topper-123