mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
62ba3e70a1
The previous output was unintuitive to users.
26 lines
789 B
Plaintext
26 lines
789 B
Plaintext
error: mismatched closing delimiter: `}`
|
|
--> $DIR/unclosed_delim_mod.rs:5:7
|
|
|
|
|
LL | pub fn new() -> Result<Value, ()> {
|
|
| - closing delimiter possibly meant for this
|
|
LL | Ok(Value {
|
|
| ^ unclosed delimiter
|
|
LL | }
|
|
LL | }
|
|
| ^ mismatched closing delimiter
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/unclosed-delimiter-in-dep.rs:4:20
|
|
|
|
|
LL | let _: usize = unclosed_delim_mod::new();
|
|
| ----- ^^^^^^^^^^^^^^^^^^^^^^^^^ expected `usize`, found `Result<Value, ()>`
|
|
| |
|
|
| expected due to this
|
|
|
|
|
= note: expected type `usize`
|
|
found enum `Result<Value, ()>`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|