rustc/tests/ui/resolve/fn-new-doesnt-exist.rs
2024-06-04 21:09:03 +02:00

6 lines
133 B
Rust

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