aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/expr-block-box.rs
blob: e8ab62091a59da412ab813010a22862ffa0297dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// xfail-boot
// -*- rust -*-

fn main() {
  auto x = {
    @100
  };

  check (*x == 100);
}