blob: 57c229a21758f78be45515144f5b1549d46901c5 [file] [log] [blame]
#![allow(dead_code)]
// pretty-expanded FIXME #23616
fn f(a: *const isize) -> *const isize { return a; }
fn g(a: *const isize) -> *const isize { let b = f(a); return b; }
pub fn main() { return; }