88e9af0375
The link for comparison: - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types--sized (broken) - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-sized (fixed) This commit is the result of (first) searching via: find src -type f -print0 | xargs -0 fgrep -l dynamically-sized-types--sized and then replacing all relevant occurrences via: find src/{libcore,test/ui} -type f -print0 | xargs -0 sed -i.bak \ s/dynamically-sized-types--sized/dynamically-sized-types-and-sized/g find src/{libcore,test/ui} -type f -name '*.bak' -print0 | xargs -0 rm (Note: Commands run on macOS 10.13 (BSD). `sed -i.bak` should work on GNU/Linux as well, but not tested.)
49 lines
1.8 KiB
Plaintext
49 lines
1.8 KiB
Plaintext
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
|
--> $DIR/trivial-bounds-leak.rs:22:25
|
|
|
|
|
LL | fn cant_return_str() -> str { //~ ERROR
|
|
| ^^^ doesn't have a size known at compile-time
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `str`
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-sized>
|
|
= note: the return type of a function must have a statically known size
|
|
|
|
error[E0599]: no method named `test` found for type `i32` in the current scope
|
|
--> $DIR/trivial-bounds-leak.rs:34:10
|
|
|
|
|
LL | 3i32.test(); //~ ERROR
|
|
| ^^^^
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
= note: the following trait defines an item `test`, perhaps you need to implement it:
|
|
candidate #1: `Foo`
|
|
|
|
error[E0277]: the trait bound `i32: Foo` is not satisfied
|
|
--> $DIR/trivial-bounds-leak.rs:35:5
|
|
|
|
|
LL | Foo::test(&4i32); //~ ERROR
|
|
| ^^^^^^^^^ the trait `Foo` is not implemented for `i32`
|
|
|
|
|
note: required by `Foo::test`
|
|
--> $DIR/trivial-bounds-leak.rs:15:5
|
|
|
|
|
LL | fn test(&self);
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error[E0277]: the trait bound `i32: Foo` is not satisfied
|
|
--> $DIR/trivial-bounds-leak.rs:36:5
|
|
|
|
|
LL | generic_function(5i32); //~ ERROR
|
|
| ^^^^^^^^^^^^^^^^ the trait `Foo` is not implemented for `i32`
|
|
|
|
|
note: required by `generic_function`
|
|
--> $DIR/trivial-bounds-leak.rs:39:1
|
|
|
|
|
LL | fn generic_function<T: Foo>(t: T) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
Some errors occurred: E0277, E0599.
|
|
For more information about an error, try `rustc --explain E0277`.
|