about summary refs log tree commit diff
path: root/src/test/run-pass/expr-block-unique.rs
blob: 0a659cdf558b6f93c135a8c4c2be137eb436707c (plain)
1
2
3
4
5
// -*- rust -*-
fn main() { let x = { ~100 }; assert (*x == 100); }