Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-7519-match-unit-in-arg.rs
blob: 2b5f1b7f1695943189b10638e842466951720506 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
/*
#7519 ICE pattern matching unit in function argument
*/
fn
foo
(():())
{
}
pub
fn
main
()
{
foo
(());
}