rust/src/test/ui/trivial-bounds/trivial-bounds-leak.stderr

49 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-07-10 16:10:13 -05:00
error[E0277]: the size for values of type `str` cannot be known at compilation time
2018-12-25 09:56:47 -06:00
--> $DIR/trivial-bounds-leak.rs:12:25
2018-05-06 16:54:00 -05:00
|
2019-03-09 06:03:44 -06:00
LL | fn cant_return_str() -> str {
2018-06-19 17:53:51 -05:00
| ^^^ doesn't have a size known at compile-time
2018-05-06 16:54:00 -05:00
|
= help: the trait `std::marker::Sized` is not implemented for `str`
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
2018-05-06 16:54:00 -05:00
= 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
2018-12-25 09:56:47 -06:00
--> $DIR/trivial-bounds-leak.rs:24:10
2018-05-06 16:54:00 -05:00
|
2019-03-09 06:03:44 -06:00
LL | 3i32.test();
2018-05-06 16:54:00 -05:00
| ^^^^
|
= 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
2018-12-25 09:56:47 -06:00
--> $DIR/trivial-bounds-leak.rs:25:5
2018-05-06 16:54:00 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Foo::test(&4i32);
2018-05-06 16:54:00 -05:00
| ^^^^^^^^^ the trait `Foo` is not implemented for `i32`
|
note: required by `Foo::test`
2018-12-25 09:56:47 -06:00
--> $DIR/trivial-bounds-leak.rs:5:5
2018-05-06 16:54:00 -05:00
|
LL | fn test(&self);
| ^^^^^^^^^^^^^^^
error[E0277]: the trait bound `i32: Foo` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/trivial-bounds-leak.rs:26:5
2018-05-06 16:54:00 -05:00
|
2019-03-09 06:03:44 -06:00
LL | generic_function(5i32);
2018-05-06 16:54:00 -05:00
| ^^^^^^^^^^^^^^^^ the trait `Foo` is not implemented for `i32`
|
note: required by `generic_function`
2018-12-25 09:56:47 -06:00
--> $DIR/trivial-bounds-leak.rs:29:1
2018-05-06 16:54:00 -05:00
|
LL | fn generic_function<T: Foo>(t: T) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 4 previous errors
Some errors have detailed explanations: E0277, E0599.
2018-05-06 16:54:00 -05:00
For more information about an error, try `rustc --explain E0277`.