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