1
+ // ignore-tidy-linelength
1
2
#![ allow( non_snake_case) ]
2
3
3
4
register_long_diagnostics ! {
@@ -1544,7 +1545,9 @@ fn f<T>() {}
1544
1545
1545
1546
It is not possible to declare type parameters on a function that has the `start`
1546
1547
attribute. Such a function must have the following type signature (for more
1547
- information: http://doc.rust-lang.org/stable/book/first-edition/no-stdlib.html):
1548
+ information, view [the unstable book][1]):
1549
+
1550
+ [1]: https://doc.rust-lang.org/unstable-book/language-features/lang-items.html#writing-an-executable-without-stdlib
1548
1551
1549
1552
```
1550
1553
# let _:
@@ -2918,10 +2921,11 @@ impl Baz for Bar { } // Note: This is OK
2918
2921
2919
2922
E0374 : r##"
2920
2923
A struct without a field containing an unsized type cannot implement
2921
- `CoerceUnsized`. An
2922
- [unsized type](https://doc.rust-lang.org/book/first-edition/unsized-types.html)
2923
- is any type that the compiler doesn't know the length or alignment of at
2924
- compile time. Any struct containing an unsized type is also unsized.
2924
+ `CoerceUnsized`. An [unsized type][1] is any type that the compiler
2925
+ doesn't know the length or alignment of at compile time. Any struct
2926
+ containing an unsized type is also unsized.
2927
+
2928
+ [1]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait
2925
2929
2926
2930
Example of erroneous code:
2927
2931
@@ -2978,9 +2982,9 @@ A struct with more than one field containing an unsized type cannot implement
2978
2982
`CoerceUnsized`. This only occurs when you are trying to coerce one of the
2979
2983
types in your struct to another type in the struct. In this case we try to
2980
2984
impl `CoerceUnsized` from `T` to `U` which are both types that the struct
2981
- takes. An [unsized type] is any type that the compiler doesn't know the length
2982
- or alignment of at compile time. Any struct containing an unsized type is also
2983
- unsized.
2985
+ takes. An [unsized type][1] is any type that the compiler doesn't know the
2986
+ length or alignment of at compile time. Any struct containing an unsized type
2987
+ is also unsized.
2984
2988
2985
2989
Example of erroneous code:
2986
2990
@@ -3025,19 +3029,20 @@ fn coerce_foo<T: CoerceUnsized<U>, U>(t: T) -> Foo<U> {
3025
3029
}
3026
3030
```
3027
3031
3028
- [unsized type ]: https://doc.rust-lang.org/book/first-edition/unsized- types.html
3032
+ [1 ]: https://doc.rust-lang.org/book/ch19-04-advanced- types.html#dynamically-sized-types-and-the-sized-trait
3029
3033
"## ,
3030
3034
3031
3035
E0376 : r##"
3032
3036
The type you are trying to impl `CoerceUnsized` for is not a struct.
3033
3037
`CoerceUnsized` can only be implemented for a struct. Unsized types are
3034
3038
already able to be coerced without an implementation of `CoerceUnsized`
3035
3039
whereas a struct containing an unsized type needs to know the unsized type
3036
- field it's containing is able to be coerced. An
3037
- [unsized type](https://doc.rust-lang.org/book/first-edition/unsized-types.html)
3040
+ field it's containing is able to be coerced. An [unsized type][1]
3038
3041
is any type that the compiler doesn't know the length or alignment of at
3039
3042
compile time. Any struct containing an unsized type is also unsized.
3040
3043
3044
+ [1]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait
3045
+
3041
3046
Example of erroneous code:
3042
3047
3043
3048
```compile_fail,E0376
@@ -3883,8 +3888,10 @@ let c = 86u8 as char; // ok!
3883
3888
assert_eq!(c, 'V');
3884
3889
```
3885
3890
3886
- For more information about casts, take a look at The Book:
3887
- https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3891
+ For more information about casts, take a look at the Type cast section in
3892
+ [The Reference Book][1].
3893
+
3894
+ [1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
3888
3895
"## ,
3889
3896
3890
3897
E0605 : r##"
@@ -3912,8 +3919,10 @@ let v = 0 as *const u8;
3912
3919
v as *const i8; // ok!
3913
3920
```
3914
3921
3915
- For more information about casts, take a look at The Book:
3916
- https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3922
+ For more information about casts, take a look at the Type cast section in
3923
+ [The Reference Book][1].
3924
+
3925
+ [1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
3917
3926
"## ,
3918
3927
3919
3928
E0606 : r##"
@@ -3934,8 +3943,10 @@ let x = &0u8;
3934
3943
let y: u32 = *x as u32; // We dereference it first and then cast it.
3935
3944
```
3936
3945
3937
- For more information about casts, take a look at The Book:
3938
- https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3946
+ For more information about casts, take a look at the Type cast section in
3947
+ [The Reference Book][1].
3948
+
3949
+ [1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
3939
3950
"## ,
3940
3951
3941
3952
E0607 : r##"
@@ -3961,8 +3972,10 @@ pointer holds is their size.
3961
3972
3962
3973
To fix this error, don't try to cast directly between thin and fat pointers.
3963
3974
3964
- For more information about casts, take a look at The Book:
3965
- https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3975
+ For more information about casts, take a look at the Type cast section in
3976
+ [The Reference Book][1].
3977
+
3978
+ [1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
3966
3979
"## ,
3967
3980
3968
3981
E0609 : r##"
@@ -4020,8 +4033,8 @@ println!("x: {}, y: {}", variable.x, variable.y);
4020
4033
```
4021
4034
4022
4035
For more information about primitives and structs, take a look at The Book:
4023
- https://doc.rust-lang.org/book/first-edition/primitive -types.html
4024
- https://doc.rust-lang.org/book/first-edition/ structs.html
4036
+ https://doc.rust-lang.org/book/ch03-02-data -types.html
4037
+ https://doc.rust-lang.org/book/ch05-00- structs.html
4025
4038
"## ,
4026
4039
4027
4040
E0614 : r##"
0 commit comments