]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/crashes/ice-700.rs
Merge commit 'ff0993c5e9162ddaea78e83d0f0161e68bd4ea73' into clippy
[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 }