uncomment feature-gate testing for in PLACE BLOCK now that its in the parser.

This commit is contained in:
Felix S. Klock II 2015-07-22 15:09:51 +02:00
parent 9f6f35bef4
commit 9d6cc05a06

View file

@ -22,6 +22,6 @@ fn main() {
let x = box (HEAP) 'c'; //~ ERROR placement-in expression syntax is experimental
println!("x: {}", x);
// let x = in HEAP { 'c' }; // ERROR placement-in expression syntax is experimental
// println!("x: {}", x);
let x = in HEAP { 'c' }; //~ ERROR placement-in expression syntax is experimental
println!("x: {}", x);
}