mirror of
https://github.com/Steffo99/micronfig.git
synced 2024-11-22 16:14:19 +00:00
20 lines
573 B
Text
20 lines
573 B
Text
|
error[E0412]: cannot find type `PathBuf` in this scope
|
||
|
--> tests/sources/wrong_unqualified_noimport.rs:2:22
|
||
|
|
|
||
|
2 | GARASAUTO: String > PathBuf,
|
||
|
| ^^^^^^^ not found in this scope
|
||
|
|
|
||
|
= help: consider importing this struct:
|
||
|
std::path::PathBuf
|
||
|
|
||
|
error[E0412]: cannot find type `PathBuf` in this scope
|
||
|
--> tests/sources/wrong_unqualified_noimport.rs:2:22
|
||
|
|
|
||
|
2 | GARASAUTO: String > PathBuf,
|
||
|
| ^^^^^^^ not found in this scope
|
||
|
|
|
||
|
help: consider importing this struct
|
||
|
|
|
||
|
1 + use std::path::PathBuf;
|
||
|
|
|