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

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

  assert (*x == 100);
}