Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-71406.rs
blob: 6266112c3a86c0526309d415d2c7a7de3388ae48 [
file
] [
log
] [
blame
] [
edit
]
use
std
::
sync
::
mpsc
;
fn
main
()
{
let
(
tx
,
rx
)
=
mpsc
::
channel
::
new
(
1
);
//~^ ERROR expected type, found function `channel` in `mpsc`
}