File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const ENTRY_LIMIT: usize = 900;
18
18
// FIXME: The following limits should be reduced eventually.
19
19
20
20
const ISSUES_ENTRY_LIMIT : usize = 1733 ;
21
- const ROOT_ENTRY_LIMIT : usize = 859 ;
21
+ const ROOT_ENTRY_LIMIT : usize = 861 ;
22
22
23
23
const EXPECTED_TEST_FILE_EXTENSIONS : & [ & str ] = & [
24
24
"rs" , // test source files
Original file line number Diff line number Diff line change
1
+ fn main ( ) { println ! ( "doing" ) ; this_does_nothing_what_the; println ! ( "boing" ) ; }
2
+ //~^ ERROR cannot find value `this_does_nothing_what_the` in this scope
Original file line number Diff line number Diff line change
1
+ error[E0425]: cannot find value `this_does_nothing_what_the` in this scope
2
+ --> $DIR/does-nothing.rs:1:32
3
+ |
4
+ LL | fn main() { println!("doing"); this_does_nothing_what_the; println!("boing"); }
5
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
6
+
7
+ error: aborting due to 1 previous error
8
+
9
+ For more information about this error, try `rustc --explain E0425`.
You can’t perform that action at this time.
0 commit comments