mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
483 B
Plaintext
14 lines
483 B
Plaintext
error: mismatched closing delimiter: `}`
|
|
--> $DIR/token-error-correct-3.rs:12:21
|
|
|
|
|
LL | if !is_directory(path.as_ref()) {
|
|
| - closing delimiter possibly meant for this
|
|
LL | callback(path.as_ref();
|
|
| ^ unclosed delimiter
|
|
LL | fs::create_dir_all(path.as_ref()).map(|()| true)
|
|
LL | } else {
|
|
| ^ mismatched closing delimiter
|
|
|
|
error: aborting due to previous error
|
|
|