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