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