Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
14
tests/rustdoc-ui/unused.rs
Normal file
14
tests/rustdoc-ui/unused.rs
Normal file
|
@ -0,0 +1,14 @@
|
|||
// check-pass
|
||||
|
||||
// This test purpose is to check that unused_imports lint isn't fired
|
||||
// by rustdoc. Why would it? Because when rustdoc is running, it uses
|
||||
// "everybody-loops" which replaces parts of code with "loop {}" to get
|
||||
// huge performance improvements.
|
||||
|
||||
#![deny(unused_imports)]
|
||||
|
||||
use std::fs::File;
|
||||
|
||||
pub fn f() {
|
||||
let _: File;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue