2023-04-23 11:03:09 +00:00
|
|
|
//@rustc-env:RUST_BACKTRACE=0
|
|
|
|
//@normalize-stderr-test: "Clippy version: .*" -> "Clippy version: foo"
|
|
|
|
//@normalize-stderr-test: "produce_ice.rs:\d*:\d*" -> "produce_ice.rs"
|
|
|
|
//@normalize-stderr-test: "', .*clippy_lints" -> "', clippy_lints"
|
|
|
|
//@normalize-stderr-test: "'rustc'" -> "'<unnamed>'"
|
2023-06-02 08:17:55 +00:00
|
|
|
//@normalize-stderr-test: "rustc 1\.\d+.* running on .*" -> "rustc <version> running on <target>"
|
2023-04-23 11:03:09 +00:00
|
|
|
//@normalize-stderr-test: "(?ms)query stack during panic:\n.*end of query stack\n" -> ""
|
2019-10-08 19:25:10 +00:00
|
|
|
|
2019-09-27 05:09:12 +00:00
|
|
|
#![deny(clippy::internal)]
|
2021-12-06 11:33:31 +00:00
|
|
|
#![allow(clippy::missing_clippy_version_attribute)]
|
2019-09-27 05:09:12 +00:00
|
|
|
|
2019-10-08 19:35:12 +00:00
|
|
|
fn it_looks_like_you_are_trying_to_kill_clippy() {}
|
2019-09-27 05:09:12 +00:00
|
|
|
|
|
|
|
fn main() {}
|