]> git.lizzy.rs Git - rust.git/blob - tests/ui/empty_enum.rs
Adapt the *.stderr files of the ui-tests to the tool_lints
[rust.git] / tests / ui / empty_enum.rs
1 #![feature(tool_lints)]
2
3
4 #![allow(dead_code)]
5 #![warn(clippy::empty_enum)]
6
7 enum Empty {}
8
9 fn main() {
10 }