2017-05-13 09:54:50 +00:00
|
|
|
warning: argument must be of the form: `expected = "error message"`
|
2019-01-01 23:21:05 +00:00
|
|
|
--> $DIR/test-should-panic-attr.rs:11:1
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #[should_panic(expected)]
|
2017-05-13 09:54:50 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-10-03 06:53:02 +00:00
|
|
|
= note: errors in this attribute were erroneously allowed and will become a hard error in a future release
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
|
|
warning: argument must be of the form: `expected = "error message"`
|
2019-01-01 23:21:05 +00:00
|
|
|
--> $DIR/test-should-panic-attr.rs:18:1
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #[should_panic(expect)]
|
2017-05-13 09:54:50 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-10-03 06:53:02 +00:00
|
|
|
= note: errors in this attribute were erroneously allowed and will become a hard error in a future release
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
|
|
warning: argument must be of the form: `expected = "error message"`
|
2019-01-01 23:21:05 +00:00
|
|
|
--> $DIR/test-should-panic-attr.rs:25:1
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #[should_panic(expected(foo, bar))]
|
2017-05-13 09:54:50 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-10-03 06:53:02 +00:00
|
|
|
= note: errors in this attribute were erroneously allowed and will become a hard error in a future release
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
|
|
warning: argument must be of the form: `expected = "error message"`
|
2019-01-01 23:21:05 +00:00
|
|
|
--> $DIR/test-should-panic-attr.rs:32:1
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #[should_panic(expected = "foo", bar)]
|
2017-05-13 09:54:50 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-10-03 06:53:02 +00:00
|
|
|
= note: errors in this attribute were erroneously allowed and will become a hard error in a future release
|
2017-05-13 09:54:50 +00:00
|
|
|
|
2020-03-11 15:30:09 +00:00
|
|
|
warning: 4 warnings emitted
|
|
|
|
|