]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/regressions.rs
Add missing `// run-pass` annotations to ICE tests
[rust.git] / tests / ui / crashes / regressions.rs
1 // run-pass
2
3 #![allow(clippy::blacklisted_name)]
4
5 pub fn foo(bar: *const u8) {
6     println!("{:#p}", bar);
7 }
8
9 fn main() {}