Update error message and un-xfail test

This commit is contained in:
Tim Chevalier 2012-11-15 18:34:27 -08:00
parent f8bd95589f
commit 2fd2a56063
1 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,5 @@
// xfail-test
const c_x: &blk/int = 22; //~ ERROR only the static region is allowed here
const c_y: &static/int = &22; //~ ERROR only the static region is allowed here
const c_x: &blk/int = &22; //~ ERROR only the static region is allowed here
const c_y: &static/int = &22;
fn main() {
}