]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/str_to_string.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / str_to_string.rs
CommitLineData
f20569fa
XL
1#![warn(clippy::str_to_string)]
2
3fn main() {
4 let hello = "hello world".to_string();
5 let msg = &hello[..];
6 msg.to_string();
7}