remove does-nothing.rs

fix: restore issues_entry_limit
This commit is contained in:
Oneirical 2024-04-06 15:46:15 -04:00
parent 8b2459c1f2
commit cbf150177f
3 changed files with 1 additions and 12 deletions

View File

@ -18,7 +18,7 @@
// FIXME: The following limits should be reduced eventually.
const ISSUES_ENTRY_LIMIT: usize = 1722;
const ROOT_ENTRY_LIMIT: usize = 861;
const ROOT_ENTRY_LIMIT: usize = 859;
const EXPECTED_TEST_FILE_EXTENSIONS: &[&str] = &[
"rs", // test source files

View File

@ -1,2 +0,0 @@
fn main() { println!("doing"); this_does_nothing_what_the; println!("boing"); }
//~^ ERROR cannot find value `this_does_nothing_what_the` in this scope

View File

@ -1,9 +0,0 @@
error[E0425]: cannot find value `this_does_nothing_what_the` in this scope
--> $DIR/does-nothing.rs:1:32
|
LL | fn main() { println!("doing"); this_does_nothing_what_the; println!("boing"); }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0425`.