Add a test for block expressions that have results. XFAILed.

This commit is contained in:
Brian Anderson 2011-03-31 20:17:43 -04:00
parent c66edca83d
commit 2490cd3275

View File

@ -0,0 +1,11 @@
// xfail-boot
// xfail-stage0
// -*- rust -*-
fn main() {
auto x = {
@100
};
check (*x == 100);
}