mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
485 B
Plaintext
14 lines
485 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 1 previous error
|
|
|