Skip to content

Commit

Permalink
fix: Improve hint of lifetimes2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tostapunk committed Jul 18, 2022
1 parent 7035d67 commit 02d78c3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,10 @@ name = "lifetimes2"
path = "exercises/lifetimes/lifetimes2.rs"
mode = "compile"
hint = """
What is the compiler checking? How could you change how long an owned variable lives?"""
Remember that the generic lifetime 'a will get the concrete lifetime that is equal to the smaller of the lifetimes of x and y.
You can take at leats two paths to achieve the desidered result while keeping the inner block:
1. move string2 declaration to make it live as long as string1 (how is result declared?)
2. move println! into the inner block"""

[[exercises]]
name = "lifetimes3"
Expand Down

0 comments on commit 02d78c3

Please sign in to comment.