mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
315 B
Rust
18 lines
315 B
Rust
// compile-flags: -D path-statements
|
|
struct Droppy;
|
|
|
|
impl Drop for Droppy {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
fn main() {
|
|
let x = 10;
|
|
x; //~ ERROR path statement with no effect
|
|
|
|
let y = Droppy;
|
|
y; //~ ERROR path statement drops value
|
|
|
|
let z = (Droppy,);
|
|
z; //~ ERROR path statement drops value
|
|
}
|