Skip to content

Commit cb84df0

Browse files
committed
bless
1 parent abf45ae commit cb84df0

File tree

5 files changed

+14
-0
lines changed

5 files changed

+14
-0
lines changed

tests/run-make/overwrite-input/file.stderr

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
warning: failed to connect to jobserver from environment variable `MAKEFLAGS=" -j36 --jobserver-auth=3,4"`: cannot open file descriptor 3 from the jobserver environment variable value: Bad file descriptor (os error 9)
2+
|
3+
= note: the build environment is likely misconfigured
4+
15
warning: ignoring --out-dir flag due to -o flag
26

37
error: the input file "main.rs" would be overwritten by the generated executable

tests/run-make/overwrite-input/folder.stderr

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
warning: failed to connect to jobserver from environment variable `MAKEFLAGS=" -j36 --jobserver-auth=3,4"`: cannot open file descriptor 3 from the jobserver environment variable value: Bad file descriptor (os error 9)
2+
|
3+
= note: the build environment is likely misconfigured
4+
15
warning: ignoring --out-dir flag due to -o flag
26

37
error: the generated executable for the input file "main.rs" conflicts with the existing directory "."

tests/run-make/unknown-mod-stdin/unknown-mod.stderr

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
warning: failed to connect to jobserver from environment variable `MAKEFLAGS=" -j36 --jobserver-auth=3,4"`: cannot open file descriptor 3 from the jobserver environment variable value: Bad file descriptor (os error 9)
2+
|
3+
= note: the build environment is likely misconfigured
4+
15
error[E0583]: file not found for module `unknown`
26
--> <anon>:1:1
37
|

tests/ui/traits/issue-77982.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ LL | let ips: Vec<_> = (0..100_000).map(|_| u32::from(0u32.into())).collect(
4444
| type must be known at this point
4545
|
4646
= note: multiple `impl`s satisfying `u32: From<_>` found in the `core` crate:
47+
- impl From<Char> for u32;
4748
- impl From<Ipv4Addr> for u32;
4849
- impl From<NonZeroU32> for u32;
4950
- impl From<bool> for u32;

tests/ui/try-trait/bad-interconversion.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ LL | Ok(Err(123_i32)?)
1212
= help: the following other types implement trait `From<T>`:
1313
<u8 as From<bool>>
1414
<u8 as From<NonZeroU8>>
15+
<u8 as From<Char>>
1516
= note: required for `Result<u64, u8>` to implement `FromResidual<Result<Infallible, i32>>`
1617

1718
error[E0277]: the `?` operator can only be used on `Result`s, not `Option`s, in a function that returns `Result`

0 commit comments

Comments
 (0)