]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/ice-700.rs
Auto merge of #4593 - james9909:fix-multiple-inherent-impls, r=llogiq
[rust.git] / 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 }