summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/unclosed-delimiter-in-dep.stderr
blob: 1366ef1bba8bfb3956ae538dc3f706ff4474da8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 enum `Result`
   |            |
   |            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`.