]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0029.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.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:15:9
3    |
4 LL |         "hello" ..= "world" => {}
5    |         ^^^^^^^^^^^^^^^^^^^ ranges require char or numeric types
6    |
7    = note: start type: &'static str
8    = note: end type: &'static str
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0029`.