ILLEGAL. The compiler prints the error message: missing lifetime specifier */ In some library code:
| 3 | */ |
| 4 | // In some library code: |
| 5 | struct S { |
| 6 | b: bool, |
| 7 | ri: & i32, |
| 8 | } |
| 9 | fn create_s(ri: &i32) -> S { |
| 10 | S { b: true, ri: ri } |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected