summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-700.rs
blob: 0cbceedbd6bdb195dd421a919eef50131c20ccb6 (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();
}