Skip to content

Commit 2fd2a56

Browse files
committed
Update error message and un-xfail test
1 parent f8bd955 commit 2fd2a56

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
// xfail-test
2-
3-
const c_x: &blk/int = 22; //~ ERROR only the static region is allowed here
4-
const c_y: &static/int = &22; //~ ERROR only the static region is allowed here
1+
const c_x: &blk/int = &22; //~ ERROR only the static region is allowed here
2+
const c_y: &static/int = &22;
53

64
fn main() {
75
}

0 commit comments

Comments
 (0)