]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0029.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / error-codes / E0029.stderr
1 error[E0029]: only `char` and numeric types are allowed in range patterns
2 --> $DIR/E0029.rs:5:9
3 |
4 LL | "hello" ..= "world" => {}
5 | -------^^^^^-------
6 | | |
7 | | this is of type `&'static str` but it should be `char` or numeric
8 | this is of type `&'static str` but it should be `char` or numeric
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0029`.