()
| 1 | fn main() { |
| 2 | let more = "many |
| 3 | lines |
| 4 | whitespace" |
| 5 | .to_string(); |
| 6 | println!("{}", more); |
| 7 | |
| 8 | let escape = " blah \"\"\" escaped ' |
| 9 | newline |
| 10 | \n |
| 11 | test |
| 12 | " |
| 13 | .to_string(); |
| 14 | println!("{}", escape); |
| 15 | |
| 16 | let single_char = 'a'; |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected