]> git.lizzy.rs Git - rust.git/blob - tests/ui/type-ptr.rs
Rollup merge of #106446 - bzEq:fix-unwind-lsda, r=Amanieu
[rust.git] / tests / ui / type-ptr.rs
1 // run-pass
2
3 #![allow(dead_code)]
4 // pretty-expanded FIXME #23616
5
6 fn f(a: *const isize) -> *const isize { return a; }
7
8 fn g(a: *const isize) -> *const isize { let b = f(a); return b; }
9
10 pub fn main() { return; }