File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ warning: trait objects without an explicit `dyn` are deprecated
2
+ --> $DIR/issue-20971.rs:16:22
3
+ |
4
+ LL | pub fn many() -> Box<Parser<Input = <() as Parser>::Input> + 'static> {
5
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Parser<Input = <() as Parser>::Input> + 'static`
6
+ |
7
+ = note: `#[warn(bare_trait_objects)]` on by default
8
+
Original file line number Diff line number Diff line change
1
+ warning: type `e` should have an upper camel case name
2
+ --> $DIR/issue-2444.rs:6:6
3
+ |
4
+ LL | enum e<T> {
5
+ | ^ help: convert the identifier to upper camel case: `E`
6
+ |
7
+ = note: `#[warn(non_camel_case_types)]` on by default
8
+
9
+ warning: variant `ee` should have an upper camel case name
10
+ --> $DIR/issue-2444.rs:7:5
11
+ |
12
+ LL | ee(Arc<T>),
13
+ | ^^ help: convert the identifier to upper camel case: `Ee`
14
+
You can’t perform that action at this time.
0 commit comments