2023-10-15 19:20:06 +08:00
|
|
|
const CONST_STRING: String = String::new();
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let empty_str = String::from("");
|
|
|
|
|
if let CONST_STRING = empty_str {}
|
2024-11-20 04:30:35 +00:00
|
|
|
//~^ ERROR constant of non-structural type `Vec<u8>` in a pattern
|
2023-10-15 19:20:06 +08:00
|
|
|
}
|