Skip to content

Commit

Permalink
Add regression test for rust-lang#58886
Browse files Browse the repository at this point in the history
  • Loading branch information
estebank authored and pietroalbini committed Mar 16, 2019
1 parent 51c47f3 commit e808e1e
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/ui/parser/unclosed-delimiter-in-dep.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
mod unclosed_delim_mod;

fn main() {
let _: usize = unclosed_delim_mod::new();
//~^ ERROR mismatched types
}
23 changes: 23 additions & 0 deletions src/test/ui/parser/unclosed-delimiter-in-dep.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
error: incorrect close delimiter: `}`
--> $DIR/unclosed_delim_mod.rs:5:1
|
LL | pub fn new() -> Result<Value, ()> {
| - close delimiter possibly meant for this
LL | Ok(Value {
| - un-closed delimiter
LL | }
LL | }
| ^ incorrect close delimiter

error[E0308]: mismatched types
--> $DIR/unclosed-delimiter-in-dep.rs:4:20
|
LL | let _: usize = unclosed_delim_mod::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^^ expected usize, found enum `std::result::Result`
|
= note: expected type `usize`
found type `std::result::Result<unclosed_delim_mod::Value, ()>`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0308`.
6 changes: 6 additions & 0 deletions src/test/ui/parser/unclosed_delim_mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pub struct Value {}
pub fn new() -> Result<Value, ()> {
Ok(Value {
}
}
//~^ ERROR incorrect close delimiter
18 changes: 18 additions & 0 deletions src/test/ui/parser/unclosed_delim_mod.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
error: incorrect close delimiter: `}`
--> $DIR/unclosed_delim_mod.rs:5:1
|
LL | pub fn new() -> Result<Value, ()> {
| - close delimiter possibly meant for this
LL | Ok(Value {
| - un-closed delimiter
LL | }
LL | }
| ^ incorrect close delimiter

error[E0601]: `main` function not found in crate `unclosed_delim_mod`
|
= note: consider adding a `main` function to `$DIR/unclosed_delim_mod.rs`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0601`.

0 comments on commit e808e1e

Please sign in to comment.