summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/fn-new-doesnt-exist.rs
blob: 4f6290808fc0370a3c5c748508cc6c434f5ff3e0 (plain)
1
2
3
4
5
use std::net::TcpStream;

fn main() {
   let stream = TcpStream::new(); //~ ERROR no function or associated item named `new` found
}