]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-71406.rs
Enable full revision in const generics ui tests
[rust.git] / src / test / ui / issues / issue-71406.rs
1 use std::sync::mpsc;
2
3 fn main() {
4     let (tx, rx) = mpsc::channel::new(1);
5     //~^ ERROR expected type, found function `channel` in `mpsc`
6 }