]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/crashes/ice-700.rs
Rollup merge of #71727 - hbina:simplified_usage, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / tests / ui / crashes / ice-700.rs
1 // run-pass
2
3 #![deny(clippy::all)]
4
5 /// Test for https://github.com/rust-lang/rust-clippy/issues/700
6
7 fn core() {}
8
9 fn main() {
10     core();
11 }