blob: e92de84c27984ef521b2d1ac2f22729b04f519c1 [file] [log] [blame]
// compile-pass
pub trait Nullable {
const NULL: Self;
fn is_null(&self) -> bool;
}
impl<T> Nullable for *const T {
const NULL: Self = 0 as *const T;
fn is_null(&self) -> bool {
*self == Self::NULL
}
}
fn main() {
}