Skip to content

Commit 2012e83

Browse files
committed
Add .stderr files from running ./x.py test --bless
1 parent 73cb85f commit 2012e83

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

src/test/ui/issues/issue-20971.stderr

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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+

src/test/ui/issues/issue-2444.stderr

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+

0 commit comments

Comments
 (0)