diff options
| author | bors <bors@rust-lang.org> | 2022-03-27 16:36:05 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-03-27 16:36:05 +0000 |
| commit | d7aca22e7fd9fdfdc60e30117e54ed479fd7bf7a (patch) | |
| tree | 34f9834640f08cb7c178145550a235ea663f3d1b /src | |
| parent | 100f12d17026fccfc5d80527b5976dd66b228b13 (diff) | |
| parent | 2ac9efbe950419979050ff14feb7fb89df4806a0 (diff) | |
| download | rust-d7aca22e7fd9fdfdc60e30117e54ed479fd7bf7a.tar.gz rust-d7aca22e7fd9fdfdc60e30117e54ed479fd7bf7a.zip | |
Auto merge of #95345 - dtolnay:escape0, r=Dylan-DPC
Debug print char 0 as '\0' rather than '\u{0}'
```rust
println!("{:?}", "foo\0");
```
- **Before:** `"foo\u{0}"`
- **After:** `"foo\0"`
```rust
println!("{:?}", '\0');
```
- **Before:** `'\u{0}'`
- **After:** `'\0'`
`'\0'` will be more recognizable to everyone than `'\u{0}'` because it's how we talk about character 0 in all of our docs and example code, such as https://doc.rust-lang.org/std/ffi/index.html, https://doc.rust-lang.org/std/ffi/struct.CStr.html, https://doc.rust-lang.org/std/ffi/struct.CString.html.
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/ui/half-open-range-patterns/half-open-range-pats-exhaustive-fail.stderr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/half-open-range-patterns/half-open-range-pats-exhaustive-fail.stderr b/src/test/ui/half-open-range-patterns/half-open-range-pats-exhaustive-fail.stderr index c2c77290c43..7a2441047b5 100644 --- a/src/test/ui/half-open-range-patterns/half-open-range-pats-exhaustive-fail.stderr +++ b/src/test/ui/half-open-range-patterns/half-open-range-pats-exhaustive-fail.stderr @@ -50,17 +50,17 @@ LL ~ match $s { $($t)+ => {} LL ~ '\u{10fffe}'..='\u{10ffff}' => todo!() } | -error[E0004]: non-exhaustive patterns: `'\u{0}'` not covered +error[E0004]: non-exhaustive patterns: `'\0'` not covered --> $DIR/half-open-range-pats-exhaustive-fail.rs:28:8 | LL | m!('a', ALMOST_MIN..); - | ^^^ pattern `'\u{0}'` not covered + | ^^^ pattern `'\0'` not covered | = note: the matched value is of type `char` help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown | LL ~ match $s { $($t)+ => {} -LL ~ '\u{0}' => todo!() } +LL ~ '\0' => todo!() } | error[E0004]: non-exhaustive patterns: `'\u{10ffff}'` not covered |
