summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-71406.rs
blob: 6266112c3a86c0526309d415d2c7a7de3388ae48 (plain)
1
2
3
4
5
6
use std::sync::mpsc;

fn main() {
    let (tx, rx) = mpsc::channel::new(1);
    //~^ ERROR expected type, found function `channel` in `mpsc`
}