mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-14 00:00:12 +02:00
6 lines
154 B
Rust
6 lines
154 B
Rust
use tokio_buf::BufStream;
|
|
|
|
// Ensures that `BufStream` can be a trait object
|
|
#[allow(dead_code)]
|
|
fn obj(_: &mut dyn BufStream<Item = u32, Error = ()>) {}
|