summary refs log tree commit diff
path: root/src/test/compile-fail/use-after-move.rs
blob: d4d42b555381904a4074d2dd0b4258b745b082a6 (plain)
1
2
// error-pattern: Unsatisfied precondition constraint (for example, init(x
fn main() { let x = @5; let y <- x; log(debug, *x); }