Don't explicitly warn against semicolon_in_expressions_from_macros

This has been warn-by-default for two years now and has already been
added to the future-incompat lints in 1.68.
This commit is contained in:
Igor Matuszewski 2023-12-05 11:35:09 +01:00
parent 2d66f6df25
commit a7224c998d
38 changed files with 38 additions and 38 deletions

View file

@ -1,6 +1,6 @@
//! The type system. We currently use this to infer types for completion, hover
//! information and various assists.
#![warn(rust_2018_idioms, unused_lifetimes, semicolon_in_expressions_from_macros)]
#![warn(rust_2018_idioms, unused_lifetimes)]
#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]
#[allow(unused)]