]> git.lizzy.rs Git - rust.git/blob - src/test/ui/placement-syntax.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / placement-syntax.stderr
1 error: emplacement syntax is obsolete (for now, anyway)
2   --> $DIR/placement-syntax.rs:3:8
3    |
4 LL |     if x<-1 {
5    |        ^^^^
6    |
7    = note: for more information, see <https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>
8 help: if you meant to write a comparison against a negative value, add a space in between `<` and `-`
9    |
10 LL |     if x< -1 {
11    |         ^^^
12
13 error: aborting due to previous error
14