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

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

  check (*x == 100);
}