Skip to content

Commit 05460d0

Browse files
committedSep 14, 2021
update test
1 parent 16c0a84 commit 05460d0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
 

‎src/test/run-make-fulldeps/target-specs/foo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ trait Sized {}
1111
auto trait Freeze {}
1212

1313
#[lang = "start"]
14-
fn start<T>(_main: *const u8, _argc: isize, _argv: *const *const u8) -> isize {
14+
fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8) -> isize {
1515
0
1616
}
1717

‎src/tools/clippy/tests/ui/def_id_nocore.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ pub trait Copy {}
1515
pub unsafe trait Freeze {}
1616

1717
#[lang = "start"]
18-
#[start]
19-
fn start(_argc: isize, _argv: *const *const u8) -> isize {
18+
fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8) -> isize {
2019
0
2120
}
2221

22+
fn main() {}
23+
2324
struct A;
2425

2526
impl A {

‎src/tools/clippy/tests/ui/def_id_nocore.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
2-
--> $DIR/def_id_nocore.rs:26:19
2+
--> $DIR/def_id_nocore.rs:27:19
33
|
44
LL | pub fn as_ref(self) -> &'static str {
55
| ^^^^

0 commit comments

Comments
 (0)
Please sign in to comment.