summaryrefslogtreecommitdiffstats
path: root/tests/ui/block-result/issue-5500.rs
blob: 577987a4596cbebed7aae5cbfcea8598a159a90b (plain)
1
2
3
4
5
6
7
fn main() {
    &panic!()
    //~^ ERROR mismatched types
    //~| expected unit type `()`
    //~| found reference `&_`
    //~| expected `()`, found reference
}