Skip to content

Commit ab57d60

Browse files
committed
update test output
1 parent 887b119 commit ab57d60

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

tests/ui/lint/lint-unconditional-recursion.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ pub struct Point {
182182
pub y: f32,
183183
}
184184

185-
impl Default for Point {
185+
impl Default for Point { //~ WARN
186186
fn default() -> Self { //~ ERROR function cannot return without recursing
187187
Point {
188188
x: Default::default(),

tests/ui/lint/lint-unconditional-recursion.stderr

+19-1
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,23 @@ LL | ..Default::default()
197197
|
198198
= help: a `loop` may express intention better if this is on purpose
199199

200-
error: aborting due to 18 previous errors
200+
warning: `impl Default` that could be derived
201+
--> $DIR/lint-unconditional-recursion.rs:185:1
202+
|
203+
LL | / impl Default for Point {
204+
LL | | fn default() -> Self {
205+
LL | | Point {
206+
LL | | x: Default::default(),
207+
... |
208+
LL | | }
209+
LL | | }
210+
| |_^
211+
|
212+
= note: `#[warn(default_could_be_derived)]` on by default
213+
help: you don't need to manually `impl Default`, you can derive it
214+
|
215+
LL ~ #[derive(Default)] pub struct Point {
216+
|
217+
218+
error: aborting due to 18 previous errors; 1 warning emitted
201219

0 commit comments

Comments
 (0)