blob: 9fa2cde6d2222fe67627425b84b736ad17fefc89 [file] [log] [blame] [edit]
//@ run-pass
#![allow(dead_code)]
//@ pretty-expanded FIXME #23616
pub trait NumCast: Sized {
fn from(i: i32) -> Option<Self>;
}
pub trait NumExt: NumCast + PartialOrd { }
fn greater_than_one<T:NumExt>(n: &T) -> bool {
*n > NumCast::from(1).unwrap()
}
pub fn main() {}