Files
rust/tests/ui/rfcs/rfc-2632-const-trait-impl/impl-with-default-fn-fail.stderr

18 lines
607 B
Plaintext
Raw Normal View History

2024-06-30 17:08:45 +00:00
error: using `#![feature(effects)]` without enabling next trait solver globally
|
= note: the next trait solver must be enabled globally for the effects feature to work correctly
= help: use `-Znext-solver` to enable
2021-07-04 12:24:20 +08:00
error[E0046]: not all trait items implemented, missing: `req`
2024-06-25 09:50:01 +00:00
--> $DIR/impl-with-default-fn-fail.rs:13:1
2021-07-04 12:24:20 +08:00
|
LL | fn req(&self);
| -------------- `req` from trait
...
LL | impl const Tr for u16 {
| ^^^^^^^^^^^^^^^^^^^^^ missing `req` in implementation
2024-06-30 17:08:45 +00:00
error: aborting due to 2 previous errors
2021-07-04 12:24:20 +08:00
For more information about this error, try `rustc --explain E0046`.