blob: 6266112c3a86c0526309d415d2c7a7de3388ae48 [file] [log] [blame]
use std::sync::mpsc;
fn main() {
let (tx, rx) = mpsc::channel::new(1);
//~^ ERROR expected type, found function `channel` in `mpsc`
}