]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18532.rs
Merge commit '4911ab124c481430672a3833b37075e6435ec34d' into clippyup
[rust.git] / src / test / ui / issues / issue-18532.rs
1 // Test that overloaded call parameter checking does not ICE
2 // when a type error or unconstrained type variable propagates
3 // into it.
4
5 fn main() {
6     (return)((),()); //~ ERROR expected function, found `!`
7 }