summaryrefslogtreecommitdiff
path: root/src/tools/clippy/tests/ui/crashes/ice-700.rs
blob: 5e004b94330eac4afde05da48aacb781a247ba4b (plain)
1
2
3
4
5
6
7
8
9
#![deny(clippy::all)]

// Test for https://github.com/rust-lang/rust-clippy/issues/700

fn core() {}

fn main() {
    core();
}