mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-14 16:03:17 +00:00
8 lines
158 B
Rust
8 lines
158 B
Rust
fn main() {
|
|
&panic!()
|
|
//~^ ERROR mismatched types
|
|
//~| expected unit type `()`
|
|
//~| found reference `&_`
|
|
//~| expected `()`, found `&_`
|
|
}
|