Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn id<T>(t: T) -> T { t }
fn main() {
const A: bool = unsafe { id::<u8> as *const () < id::<u16> as *const () };
//~^ ERROR pointers cannot
println!("{}", A);
}