Skip to content

Commit 7ac821d

Browse files
authored
Rollup merge of #41435 - estebank:issue-33884, r=nikomatsakis
Add test for issue 33884 Fix #33884. r=nikomatsakis
2 parents 9283402 + 903bdfc commit 7ac821d

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

src/test/ui/span/issue-33884.rs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use std::net::TcpListener;
12+
use std::net::TcpStream;
13+
use std::io::{self, Read, Write};
14+
15+
fn handle_client(stream: TcpStream) -> io::Result<()> {
16+
stream.write_fmt(format!("message received"))
17+
}
18+
19+
fn main() {
20+
if let Ok(listener) = TcpListener::bind("127.0.0.1:8080") {
21+
for incoming in listener.incoming() {
22+
if let Ok(stream) = incoming {
23+
handle_client(stream);
24+
}
25+
}
26+
}
27+
}

src/test/ui/span/issue-33884.stderr

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/issue-33884.rs:16:22
3+
|
4+
16 | stream.write_fmt(format!("message received"))
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `std::fmt::Arguments`, found struct `std::string::String`
6+
|
7+
= note: expected type `std::fmt::Arguments<'_>`
8+
found type `std::string::String`
9+
= note: this error originates in a macro outside of the current crate
10+
11+
error: aborting due to previous error
12+

0 commit comments

Comments
 (0)