std: adjust the TCP io doc example to work reliably.
Fixes #11576 by making the code never run (and hence never pass when the test was marked `should_fail`).
This commit is contained in:
parent
05810604c8
commit
14668f2791
1 changed files with 6 additions and 1 deletions
|
@ -81,13 +81,18 @@ Some examples of obvious things you might want to do
|
||||||
|
|
||||||
* Make a simple TCP client connection and request
|
* Make a simple TCP client connection and request
|
||||||
|
|
||||||
```rust,should_fail
|
```rust
|
||||||
# #![allow(unused_must_use)]
|
# #![allow(unused_must_use)]
|
||||||
use std::io::net::tcp::TcpStream;
|
use std::io::net::tcp::TcpStream;
|
||||||
|
|
||||||
|
# // connection doesn't fail if a server is running on 8080
|
||||||
|
# // locally, we still want to be type checking this code, so lets
|
||||||
|
# // just stop it running (#11576)
|
||||||
|
# if false {
|
||||||
let mut socket = TcpStream::connect("127.0.0.1", 8080).unwrap();
|
let mut socket = TcpStream::connect("127.0.0.1", 8080).unwrap();
|
||||||
socket.write(bytes!("GET / HTTP/1.0\n\n"));
|
socket.write(bytes!("GET / HTTP/1.0\n\n"));
|
||||||
let response = socket.read_to_end();
|
let response = socket.read_to_end();
|
||||||
|
# }
|
||||||
```
|
```
|
||||||
|
|
||||||
* Make a simple TCP server
|
* Make a simple TCP server
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue