mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
edafbaffb2
- Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test
9 lines
123 B
Rust
9 lines
123 B
Rust
// run-pass
|
|
|
|
#![allow(unused_variables)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
pub fn main() {
|
|
let x: () = *Box::new(());
|
|
}
|